Mesa (master): i915g: Don't forget x/y coords in transfers

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Sat Aug 8 01:21:27 UTC 2009


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

Author: Jakob Bornecrantz <jakob at aurora.walkyrie.se>
Date:   Sat Aug  8 03:20:24 2009 +0200

i915g: Don't forget x/y coords in transfers

	Fixes demos/ray.

---

 src/gallium/drivers/i915simple/i915_screen.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/gallium/drivers/i915simple/i915_screen.c b/src/gallium/drivers/i915simple/i915_screen.c
index f4aa8e6..a3de38d 100644
--- a/src/gallium/drivers/i915simple/i915_screen.c
+++ b/src/gallium/drivers/i915simple/i915_screen.c
@@ -232,6 +232,8 @@ i915_get_tex_transfer(struct pipe_screen *screen,
    if (trans) {
       pipe_texture_reference(&trans->base.texture, texture);
       trans->base.format = trans->base.format;
+      trans->base.x = x;
+      trans->base.y = y;
       trans->base.width = w;
       trans->base.height = h;
       trans->base.block = texture->block;




More information about the mesa-commit mailing list