Mesa (master): intel: Remove dead code from having to clip copyteximage source rect.

Eric Anholt anholt at kemper.freedesktop.org
Wed Jan 27 02:27:31 UTC 2010


Module: Mesa
Branch: master
Commit: 2792baec343e5773ff51e93c1b6df8b63d3af4af
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2792baec343e5773ff51e93c1b6df8b63d3af4af

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Jan 26 18:04:03 2010 -0800

intel: Remove dead code from having to clip copyteximage source rect.

mesa core does it now.  If only it did so for other entrypoints.

---

 src/mesa/drivers/dri/intel/intel_tex_copy.c |    5 -----
 1 files changed, 0 insertions(+), 5 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_tex_copy.c b/src/mesa/drivers/dri/intel/intel_tex_copy.c
index 79994b4..d67451c 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_copy.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_copy.c
@@ -113,8 +113,6 @@ do_copy_texsubimage(struct intel_context *intel,
       drm_intel_bo *dst_bo = intel_region_buffer(intel,
 						 intelImage->mt->region,
 						 INTEL_WRITE_PART);
-      const GLint orig_x = x;
-      const GLint orig_y = y;
       GLuint image_x, image_y;
       GLshort src_pitch;
 
@@ -124,9 +122,6 @@ do_copy_texsubimage(struct intel_context *intel,
 				     intelImage->face,
 				     0,
 				     &image_x, &image_y);
-      /* Update dst for clipped src.  Need to also clip the source rect. */
-      dstx += x - orig_x;
-      dsty += y - orig_y;
 
       /* Can't blit to tiled buffers with non-tile-aligned offset. */
       if (intelImage->mt->region->tiling == I915_TILING_Y) {




More information about the mesa-commit mailing list