diff options
author | Roland Scheidegger <[email protected]> | 2009-12-23 16:55:16 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-23 16:57:46 +0100 |
commit | faae0e5da3c955ef98d87d127fda671de4bdb4a4 (patch) | |
tree | dbc9348c3987df3e123c2f3c2a7f7d53d8e7ace0 /progs/rbug/tex_dump.c | |
parent | 315ca95666b3744f8c72c35135aea5d96de4cbb2 (diff) |
rbug: rename pf_is_compressed to util_format_is_compressed
Diffstat (limited to 'progs/rbug/tex_dump.c')
-rw-r--r-- | progs/rbug/tex_dump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/rbug/tex_dump.c b/progs/rbug/tex_dump.c index f9e06ee994a..963f8eeedea 100644 --- a/progs/rbug/tex_dump.c +++ b/progs/rbug/tex_dump.c @@ -27,6 +27,7 @@ #include "pipe/p_state.h" #include "util/u_memory.h" #include "util/u_debug.h" +#include "util/u_format.h" #include "util/u_network.h" #include "util/u_tile.h" #include "rbug/rbug.h" @@ -49,7 +50,7 @@ static void dump(rbug_texture_t tex, util_snprintf(filename, 512, "%llu_%s_%u.bmp", (unsigned long long)tex, pf_name(info->format), mip); - if (pf_is_compressed(info->format)) { + if (util_format_is_compressed(info->format)) { debug_printf("skipping: %s\n", filename); return; } |