From: Thomas Hellstrom Date: Mon, 15 Jun 2009 09:20:31 +0000 (+0200) Subject: gallium: Fix segfault and valgrind error introduced with commit 3f2e006b759705abd7c40... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cbe5af766eb52516e50d38c379bbde3391f6c0c2;p=mesa.git gallium: Fix segfault and valgrind error introduced with commit 3f2e006b759705abd7c409d30f9aeb1f2a75b83f Signed-off-by: Thomas Hellstrom --- 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 )