From 8f2b2d113fd43b0265f47c6ece3f7c52f5861442 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sun, 14 Feb 2010 13:26:46 +0000 Subject: cell: Use util_format_name(). --- src/gallium/drivers/cell/ppu/cell_state_emit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/gallium/drivers/cell/ppu') diff --git a/src/gallium/drivers/cell/ppu/cell_state_emit.c b/src/gallium/drivers/cell/ppu/cell_state_emit.c index 282f05ba08..a59c7828ac 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 } -- cgit v1.2.3