summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2008-01-04 17:06:55 +0100
committerMichel Dänzer <michel@tungstengraphics.com>2008-01-04 18:21:45 +0100
commit1c5f27a18b775b3784fcd265d60e0affa0b31581 (patch)
tree8f9841014fdf5ddd0c4151c6ad1a0977170e6c79 /src/mesa/pipe/i965simple
parent6f012904318311207a20bbf586f1a9f9f8b7fc20 (diff)
gallium: Make texture target an enum for better debuggability.
Also make enum pipe_format used in a couple more places.
Diffstat (limited to 'src/mesa/pipe/i965simple')
-rw-r--r--src/mesa/pipe/i965simple/brw_wm_surface_state.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/i965simple/brw_wm_surface_state.c b/src/mesa/pipe/i965simple/brw_wm_surface_state.c
index 5c7dee5790..fc40e0438c 100644
--- a/src/mesa/pipe/i965simple/brw_wm_surface_state.c
+++ b/src/mesa/pipe/i965simple/brw_wm_surface_state.c
@@ -33,7 +33,7 @@
#include "brw_state.h"
#include "brw_defines.h"
-static unsigned translate_tex_target( int target )
+static unsigned translate_tex_target( enum pipe_texture_target target )
{
switch (target) {
case PIPE_TEXTURE_1D:
@@ -54,9 +54,9 @@ static unsigned translate_tex_target( int target )
}
}
-static unsigned translate_tex_format( unsigned mesa_format )
+static unsigned translate_tex_format( enum pipe_format pipe_format )
{
- switch( mesa_format ) {
+ switch( pipe_format ) {
case PIPE_FORMAT_U_L8:
return BRW_SURFACEFORMAT_L8_UNORM;