diff options
author | José Fonseca <[email protected]> | 2010-02-14 13:26:30 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-02-14 13:26:30 +0000 |
commit | db2df0aa9b49e006de4fcfc4a0bab32ad0a30173 (patch) | |
tree | 821bb212591de805a857a77bd55c31ae69d95fa6 /src/gallium/drivers/nv50/nv50_vbo.c | |
parent | 06f76e4a6b8a3949918e55643f39525de1276815 (diff) |
nv: Use util_format_name().
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_vbo.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_vbo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c index ca2f8061f32..7a2618d2a3a 100644 --- a/src/gallium/drivers/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nv50/nv50_vbo.c @@ -23,7 +23,6 @@ #include "pipe/p_context.h" #include "pipe/p_state.h" #include "util/u_inlines.h" - #include "util/u_format.h" #include "nv50_context.h" @@ -151,7 +150,7 @@ nv50_vbo_vtxelt_to_hw(struct pipe_vertex_element *ve) hw_size = nv50_vbo_size_to_hw(size, ve->nr_components); if (!hw_type || !hw_size) { - NOUVEAU_ERR("unsupported vbo format: %s\n", pf_name(pf)); + NOUVEAU_ERR("unsupported vbo format: %s\n", util_format_name(pf)); abort(); return 0x24e80000; } |