From 6cec233c62a8f455992036f380f3447f90a2715a Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 11 Apr 2013 10:30:51 -0700 Subject: [PATCH] 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 --- src/mesa/drivers/dri/intel/intel_tex_subimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/intel/intel_tex_subimage.c b/src/mesa/drivers/dri/intel/intel_tex_subimage.c index b02e5fc..42cc739 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; } /** -- 2.7.4