From: José Fonseca Date: Sun, 14 Feb 2010 13:27:00 +0000 (+0000) Subject: draw: Use util_format_name(). X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13701aae40d8edb5b38be5fb04739f74c1fc8001;p=mesa.git draw: Use util_format_name(). --- diff --git a/src/gallium/auxiliary/draw/draw_pt.c b/src/gallium/auxiliary/draw/draw_pt.c index f5ed32d0b05..341353f6289 100644 --- a/src/gallium/auxiliary/draw/draw_pt.c +++ b/src/gallium/auxiliary/draw/draw_pt.c @@ -310,7 +310,7 @@ draw_arrays_instanced(struct draw_context *draw, debug_printf("Elements:\n"); for (i = 0; i < draw->pt.nr_vertex_elements; i++) { debug_printf(" format=%s comps=%u\n", - pf_name(draw->pt.vertex_element[i].src_format), + util_format_name(draw->pt.vertex_element[i].src_format), draw->pt.vertex_element[i].nr_components); } debug_printf("Buffers:\n");