diff options
author | Kristian Høgsberg <krh@bitplanet.net> | 2010-02-19 12:32:24 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2010-02-19 12:32:24 -0500 |
commit | 298be2b028263b2c343a707662c6fbfa18293cb2 (patch) | |
tree | 97ebdbbd457cbb2803ab03125355885c49d22f55 /src/gallium/drivers | |
parent | 32f2fd1c5d6088692551c80352b7d6fa35b0cd09 (diff) |
Replace the _mesa_*printf() wrappers with the plain libc versions
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_tri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_tri.c b/src/gallium/drivers/cell/spu/spu_tri.c index 58be001be4..f619380d80 100644 --- a/src/gallium/drivers/cell/spu/spu_tri.c +++ b/src/gallium/drivers/cell/spu/spu_tri.c @@ -752,7 +752,7 @@ subtriangle(struct edge *eleft, struct edge *eright, unsigned lines) finish_y -= sy; /* - _mesa_printf("%s %d %d\n", __FUNCTION__, start_y, finish_y); + printf("%s %d %d\n", __FUNCTION__, start_y, finish_y); */ for (y = start_y; y < finish_y; y++) { |