diff options
author | José Fonseca <[email protected]> | 2010-02-14 13:27:00 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-02-14 13:27:00 +0000 |
commit | 13701aae40d8edb5b38be5fb04739f74c1fc8001 (patch) | |
tree | da834bc71bca564a0287acb5704dc857f80ca8d4 /src/gallium | |
parent | c667a5b95dd971629784b26adf13bd6b211f6f55 (diff) |
draw: Use util_format_name().
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |