Mesa (master): cell: Use util_format_name().

Jose Fonseca jrfonseca at kemper.freedesktop.org
Sun Feb 14 13:29:30 UTC 2010


Module: Mesa
Branch: master
Commit: 8f2b2d113fd43b0265f47c6ece3f7c52f5861442
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8f2b2d113fd43b0265f47c6ece3f7c52f5861442

Author: José Fonseca <jfonseca at vmware.com>
Date:   Sun Feb 14 13:26:46 2010 +0000

cell: Use util_format_name().

---

 src/gallium/drivers/cell/ppu/cell_state_emit.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/cell/ppu/cell_state_emit.c b/src/gallium/drivers/cell/ppu/cell_state_emit.c
index 282f05b..a59c782 100644
--- a/src/gallium/drivers/cell/ppu/cell_state_emit.c
+++ b/src/gallium/drivers/cell/ppu/cell_state_emit.c
@@ -28,6 +28,7 @@
 #include "util/u_inlines.h"
 #include "util/u_memory.h"
 #include "util/u_math.h"
+#include "util/u_format.h"
 #include "cell_context.h"
 #include "cell_gen_fragment.h"
 #include "cell_state.h"
@@ -207,8 +208,8 @@ cell_emit_state(struct cell_context *cell)
       fb->width = cell->framebuffer.width;
       fb->height = cell->framebuffer.height;
 #if 0
-      printf("EMIT color format %s\n", pf_name(fb->color_format));
-      printf("EMIT depth format %s\n", pf_name(fb->depth_format));
+      printf("EMIT color format %s\n", util_format_name(fb->color_format));
+      printf("EMIT depth format %s\n", util_format_name(fb->depth_format));
 #endif
    }
 




More information about the mesa-commit mailing list