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/nv30/nv30_fragtex.c | |
parent | 06f76e4a6b8a3949918e55643f39525de1276815 (diff) |
nv: Use util_format_name().
Diffstat (limited to 'src/gallium/drivers/nv30/nv30_fragtex.c')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_fragtex.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_fragtex.c b/src/gallium/drivers/nv30/nv30_fragtex.c index 0cc3172dcd5..9f4a104f673 100644 --- a/src/gallium/drivers/nv30/nv30_fragtex.c +++ b/src/gallium/drivers/nv30/nv30_fragtex.c @@ -1,3 +1,5 @@ +#include "util/u_format.h" + #include "nv30_context.h" #include "nouveau/nouveau_util.h" @@ -50,7 +52,7 @@ nv30_fragtex_format(uint pipe_format) tf++; } - NOUVEAU_ERR("unknown texture format %s\n", pf_name(pipe_format)); + NOUVEAU_ERR("unknown texture format %s\n", util_format_name(pipe_format)); return NULL; } |