summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i915simple
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-12-12 15:24:01 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-12-12 15:24:01 -0700
commit708251558c4eb1719a0f73d83c233c7a492f2297 (patch)
tree97a44cdeb6259e8df68819d7442df4e6ac753a5f /src/mesa/pipe/i915simple
parent20eae595faa20dba8a59d8a4bfd01aa6b458cecd (diff)
PIPE_SCREEN_SURFACE no longer needed
Diffstat (limited to 'src/mesa/pipe/i915simple')
-rw-r--r--src/mesa/pipe/i915simple/i915_context.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mesa/pipe/i915simple/i915_context.c b/src/mesa/pipe/i915simple/i915_context.c
index 0e3d6d64e4..1c6b8cbb05 100644
--- a/src/mesa/pipe/i915simple/i915_context.c
+++ b/src/mesa/pipe/i915simple/i915_context.c
@@ -41,7 +41,7 @@
/**
* Query format support for creating a texture, drawing surface, etc.
* \param format the format to test
- * \param type one of PIPE_TEXTURE, PIPE_SURFACE, PIPE_SCREEN_SURFACE
+ * \param type one of PIPE_TEXTURE, PIPE_SURFACE
*/
static boolean
i915_is_format_supported( struct pipe_context *pipe,
@@ -64,12 +64,7 @@ i915_is_format_supported( struct pipe_context *pipe,
PIPE_FORMAT_A8R8G8B8_UNORM,
PIPE_FORMAT_R5G6B5_UNORM,
PIPE_FORMAT_S8Z24_UNORM,
- PIPE_FORMAT_R16G16B16A16_SNORM,
- PIPE_FORMAT_NONE /* list terminator */
- };
- static const enum pipe_format screen_surface_supported[] = {
- PIPE_FORMAT_A8R8G8B8_UNORM,
- PIPE_FORMAT_R5G6B5_UNORM,
+ /*PIPE_FORMAT_R16G16B16A16_SNORM,*/
PIPE_FORMAT_NONE /* list terminator */
};
const enum pipe_format *list;
@@ -82,9 +77,6 @@ i915_is_format_supported( struct pipe_context *pipe,
case PIPE_SURFACE:
list = surface_supported;
break;
- case PIPE_SCREEN_SURFACE:
- list = screen_surface_supported;
- break;
default:
assert(0);
}