gallium: Move pf_is_depth_stencil to p_format.h.
authorJosé Fonseca <jfonseca@vmware.com>
Tue, 31 Mar 2009 08:46:55 +0000 (09:46 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Tue, 31 Mar 2009 11:29:13 +0000 (12:29 +0100)
src/gallium/include/pipe/p_format.h
src/mesa/state_tracker/st_texture.h

index 3f65a60436453992984c41f097801464c40e5690..a279eefef9ec1f71e93423744f93d348d121e45c 100644 (file)
@@ -536,6 +536,13 @@ pf_get_nblocks(const struct pipe_format_block *block, unsigned width, unsigned h
    return pf_get_nblocksx(block, width)*pf_get_nblocksy(block, height);
 }
 
+static INLINE boolean 
+pf_is_depth_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_compressed( enum pipe_format format )
 {
index 840b7e27cc080539ee6ddcdbb394593ab86ccfb2..28c2f580f682405be3d581fe05dbf93c88e16a28 100644 (file)
@@ -99,12 +99,6 @@ st_get_stobj_texture(struct st_texture_object *stObj)
    return stObj ? stObj->pt : NULL;
 }
 
-static INLINE GLboolean pf_is_depth_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;
-}
-
 
 extern struct pipe_texture *
 st_texture_create(struct st_context *st,