summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_blit.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-08-06 14:58:01 -0600
committerBrian Paul <brianp@vmware.com>2009-08-07 13:48:26 -0600
commit9de26ccbcc2123b658c1b01c079b010473bc6da6 (patch)
tree3d70738bd1d97558a69c0261ce92217a69ea492a /src/gallium/auxiliary/util/u_blit.c
parentf36d0121915ca724fd0843b978e7ff224980d929 (diff)
util: fix incorrect assertion
Check that the dest surface/format is renderable.
Diffstat (limited to 'src/gallium/auxiliary/util/u_blit.c')
-rw-r--r--src/gallium/auxiliary/util/u_blit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_blit.c b/src/gallium/auxiliary/util/u_blit.c
index ebf3f144b5..cda6dbd46d 100644
--- a/src/gallium/auxiliary/util/u_blit.c
+++ b/src/gallium/auxiliary/util/u_blit.c
@@ -326,7 +326,7 @@ util_blit_pixels(struct blit_state *ctx,
assert(screen->is_format_supported(screen, src->format, PIPE_TEXTURE_2D,
PIPE_TEXTURE_USAGE_SAMPLER, 0));
assert(screen->is_format_supported(screen, dst->format, PIPE_TEXTURE_2D,
- PIPE_TEXTURE_USAGE_SAMPLER, 0));
+ PIPE_TEXTURE_USAGE_RENDER_TARGET, 0));
/* do the regions overlap? */
overlap = util_same_surface(src, dst) &&