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

Author: Brian Paul <[email protected]>
Date:   Mon Jan  2 11:55:39 2012 -0700

intel: pass xoffset, yoffset = 0 to _mesa_texstore()

Reviewed-by: Kenneth Graunke <[email protected]>

---

 src/mesa/drivers/dri/intel/intel_tex_subimage.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_tex_subimage.c 
b/src/mesa/drivers/dri/intel/intel_tex_subimage.c
index 4572747..258c3f5 100644
--- a/src/mesa/drivers/dri/intel/intel_tex_subimage.c
+++ b/src/mesa/drivers/dri/intel/intel_tex_subimage.c
@@ -115,12 +115,10 @@ intel_blit_texsubimage(struct gl_context * ctx,
                                  &blit_x, &blit_y);
    blit_x += xoffset;
    blit_y += yoffset;
-   xoffset = 0;
-   yoffset = 0;
 
    if (!_mesa_texstore(ctx, 2, texImage->_BaseFormat,
                       texImage->TexFormat,
-                      xoffset, yoffset, 0,
+                      0, 0, 0,  /* x, y, z offset in dest buffer */
                       dstRowStride,
                       &dstMap,
                       width, height, 1,

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to