diff options
author | Thomas Hellstrom <thellstrom-at-vmware-dot-com> | 2009-06-15 11:20:31 +0200 |
---|---|---|
committer | Thomas Hellstrom <thellstrom-at-vmware-dot-com> | 2009-06-15 11:22:06 +0200 |
commit | cbe5af766eb52516e50d38c379bbde3391f6c0c2 (patch) | |
tree | df05a487637e5f4dbbb42265f4b8fb718cc720ac /src | |
parent | fb64365642be82ac0dc0d43452afc4650d309b53 (diff) |
gallium: Fix segfault and valgrind error introduced with commit 3f2e006b759705abd7c409d30f9aeb1f2a75b83f
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index e31538c95fc..c4469d4a9e9 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -563,7 +563,11 @@ pf_is_depth_and_stencil( enum pipe_format format ) } /** DEPRECATED: For backwards compatibility */ -#define pf_is_depth_stencil pf_is_depth_or_stencil +static INLINE boolean +pf_is_depth_stencil( enum pipe_format format ) +{ + return pf_is_depth_or_stencil( format ); +} static INLINE boolean pf_is_compressed( enum pipe_format format ) |