From 5a185ca09ae9d0774c99a187463d975a40ce9770 Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 15 Jan 2008 18:26:21 -0700 Subject: replace _mesa_printf() with fprintf() --- src/mesa/pipe/i965simple/brw_sf_emit.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/mesa/pipe/i965simple/brw_sf_emit.c') 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__); } -- cgit v1.2.3