summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2013-04-11 10:30:51 -0700
committerEric Anholt <[email protected]>2013-04-12 16:32:13 -0700
commit6cec233c62a8f455992036f380f3447f90a2715a (patch)
tree040ae54d3711f51acba52eceb3681d3c8aed97ce /src/mesa/drivers
parentb681a8958848d53f6f81f77d47674b996d9e8c20 (diff)
intel: Return failure properly in the texsubimage blit path.
We assert that failure doesn't happen, but it fixes a warning in the release build and it would at least give working behavior for a user by falling back to the normal texsubimage path. Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/intel/intel_tex_subimage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_tex_subimage.c b/src/mesa/drivers/dri/intel/intel_tex_subimage.c
index b02e5fc549a..42cc7392927 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_subimage.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_subimage.c
@@ -146,7 +146,7 @@ intel_blit_texsubimage(struct gl_context * ctx,
drm_intel_bo_unreference(temp_bo);
_mesa_unmap_teximage_pbo(ctx, packing);
- return true;
+ return ret;
}
/**