summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_format.h
diff options
context:
space:
mode:
authorThomas Hellstrom <thellstrom-at-vmware-dot-com>2009-06-15 11:43:48 +0200
committerThomas Hellstrom <thellstrom-at-vmware-dot-com>2009-06-15 11:43:48 +0200
commitf5888d9ca56ba68c01a4c9f111174650fac943aa (patch)
tree2943286e0edda3342b4439e20c3d960c26096057 /src/gallium/include/pipe/p_format.h
parente0eafde746fee546b16205e4a605e28f78e120f9 (diff)
parentcbe5af766eb52516e50d38c379bbde3391f6c0c2 (diff)
Merge branch 'mesa_7_5_branch'
Conflicts: progs/util/extfuncs.h
Diffstat (limited to 'src/gallium/include/pipe/p_format.h')
-rw-r--r--src/gallium/include/pipe/p_format.h6
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 e31538c95f..c4469d4a9e 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 )