diff options
author | Michal Krol <[email protected]> | 2009-12-03 10:12:47 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-03 10:12:47 +0100 |
commit | d28740c298968303500a8c43047ded2679e727ac (patch) | |
tree | bb20439f6040083d94fbc21f71a32fcc3f13eae4 /src/gallium/include | |
parent | 3400b668e35469d5dbba515e3a8b9d775fd2eff5 (diff) |
Move pf_is_depth_stencil() to u_format auxiliary module.
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index 3eb22ff077d..16ac95be9b6 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -549,26 +549,12 @@ pf_get_2d_size(const struct pipe_format_block *block, size_t stride, unsigned he } static INLINE boolean -pf_is_depth_or_stencil( enum pipe_format format ) -{ - return (pf_get_component_bits( format, PIPE_FORMAT_COMP_Z ) + - pf_get_component_bits( format, PIPE_FORMAT_COMP_S )) != 0; -} - -static INLINE boolean pf_is_depth_and_stencil( enum pipe_format format ) { return (pf_get_component_bits( format, PIPE_FORMAT_COMP_Z ) != 0 && pf_get_component_bits( format, PIPE_FORMAT_COMP_S ) != 0); } -/** DEPRECATED: For backwards compatibility */ -static INLINE boolean -pf_is_depth_stencil( enum pipe_format format ) -{ - return pf_is_depth_or_stencil( format ); -} - enum pipe_video_chroma_format { PIPE_VIDEO_CHROMA_FORMAT_420, |