summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/util/u_surface.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-04-21 15:13:34 +0200
committerMarek Olšák <[email protected]>2011-04-21 15:51:18 +0200
commit4ad63659c09499f4e538d71aec42035246747ffd (patch)
tree38809318ca91580b5a254e4dfecd9f6e475a3ae7 /src/gallium/auxiliary/util/u_surface.c
parentf9dafcb8f242a6f0d06ff3dcb2d4bb7d73b91b57 (diff)
galahad,util: warn on resource target mismatch in copy_region
Reviewed-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util/u_surface.c')
-rw-r--r--src/gallium/auxiliary/util/u_surface.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_surface.c b/src/gallium/auxiliary/util/u_surface.c
index 43a026691d3..4c5cc4da182 100644
--- a/src/gallium/auxiliary/util/u_surface.c
+++ b/src/gallium/auxiliary/util/u_surface.c
@@ -157,6 +157,9 @@ util_resource_copy_region(struct pipe_context *pipe,
unsigned h = src_box->height;
assert(src && dst);
+ assert((src->target == PIPE_BUFFER && dst->target == PIPE_BUFFER) ||
+ (src->target != PIPE_BUFFER && dst->target != PIPE_BUFFER));
+
if (!src || !dst)
return;