summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/i965simple/brw_sf_emit.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-15 18:26:21 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-15 18:26:21 -0700
commit5a185ca09ae9d0774c99a187463d975a40ce9770 (patch)
treee7d2562c406e3e0f41dd227dd72f815c69389315 /src/mesa/pipe/i965simple/brw_sf_emit.c
parent0cec2e18d5a11244f1b2c989b3f17161a95ee416 (diff)
replace _mesa_printf() with fprintf()
Diffstat (limited to 'src/mesa/pipe/i965simple/brw_sf_emit.c')
-rw-r--r--src/mesa/pipe/i965simple/brw_sf_emit.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/pipe/i965simple/brw_sf_emit.c b/src/mesa/pipe/i965simple/brw_sf_emit.c
index bc3878a93a..6ff5254ff7 100644
--- a/src/mesa/pipe/i965simple/brw_sf_emit.c
+++ b/src/mesa/pipe/i965simple/brw_sf_emit.c
@@ -137,8 +137,8 @@ static boolean calculate_masks( struct brw_sf_compile *c,
unsigned persp_mask = c->key.persp_mask;
unsigned linear_mask = c->key.linear_mask;
- _mesa_printf("persp_mask: %x\n", persp_mask);
- _mesa_printf("linear_mask: %x\n", linear_mask);
+ fprintf(stderr, "persp_mask: %x\n", persp_mask);
+ fprintf(stderr, "linear_mask: %x\n", linear_mask);
*pc_persp = 0;
*pc_linear = 0;
@@ -162,9 +162,9 @@ static boolean calculate_masks( struct brw_sf_compile *c,
*pc_linear |= 0xf0;
}
- _mesa_printf("pc: %x\n", *pc);
- _mesa_printf("pc_persp: %x\n", *pc_persp);
- _mesa_printf("pc_linear: %x\n", *pc_linear);
+ fprintf(stderr, "pc: %x\n", *pc);
+ fprintf(stderr, "pc_persp: %x\n", *pc_persp);
+ fprintf(stderr, "pc_linear: %x\n", *pc_linear);
return is_last_attr;
@@ -177,7 +177,7 @@ void brw_emit_tri_setup( struct brw_sf_compile *c )
struct brw_compile *p = &c->func;
unsigned i;
- _mesa_printf("%s START ==============\n", __FUNCTION__);
+ fprintf(stderr, "%s START ==============\n", __FUNCTION__);
c->nr_verts = 3;
alloc_regs(c);
@@ -250,7 +250,7 @@ void brw_emit_tri_setup( struct brw_sf_compile *c )
}
}
- _mesa_printf("%s DONE ==============\n", __FUNCTION__);
+ fprintf(stderr, "%s DONE ==============\n", __FUNCTION__);
}