diff options
author | Michal Krol <[email protected]> | 2009-12-03 09:56:03 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-03 09:56:03 +0100 |
commit | 3400b668e35469d5dbba515e3a8b9d775fd2eff5 (patch) | |
tree | ae330b437c9c79876d11b2a7129615b60f660905 /src/mesa | |
parent | 3ffe25c91706fe5ab2735f07c3c8b4114b9f9514 (diff) |
Move pf_is_compressed() to u_format auxiliary module.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_cb_texture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_texture.c b/src/mesa/state_tracker/st_cb_texture.c index 3a2337802fa..2c5601c22b7 100644 --- a/src/mesa/state_tracker/st_cb_texture.c +++ b/src/mesa/state_tracker/st_cb_texture.c @@ -62,6 +62,7 @@ #include "pipe/p_shader_tokens.h" #include "util/u_tile.h" #include "util/u_blit.h" +#include "util/u_format.h" #include "util/u_surface.h" #include "util/u_math.h" @@ -890,7 +891,7 @@ st_get_tex_image(GLcontext * ctx, GLenum target, GLint level, GLubyte *dest; if (stImage->pt && - pf_is_compressed(stImage->pt->format) && + util_format_is_compressed(stImage->pt->format) && !compressed_dst) { /* Need to decompress the texture. * We'll do this by rendering a textured quad. |