diff options
author | Michal Krol <[email protected]> | 2009-12-03 09:56:03 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-03 09:56:03 +0100 |
commit | 3400b668e35469d5dbba515e3a8b9d775fd2eff5 (patch) | |
tree | ae330b437c9c79876d11b2a7129615b60f660905 /src/gallium/include/pipe/p_format.h | |
parent | 3ffe25c91706fe5ab2735f07c3c8b4114b9f9514 (diff) |
Move pf_is_compressed() to u_format auxiliary module.
Diffstat (limited to 'src/gallium/include/pipe/p_format.h')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index 8c61858e7b5..3eb22ff077d 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -569,12 +569,6 @@ 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 ) -{ - return pf_layout(format) == PIPE_FORMAT_LAYOUT_DXT ? TRUE : FALSE; -} - enum pipe_video_chroma_format { PIPE_VIDEO_CHROMA_FORMAT_420, |