summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-11-26 20:38:43 +0100
committerMichal Krol <michal@vmware.com>2009-11-26 20:41:46 +0100
commit884007546c98b1779bf266ec5111b1e7e2b68b2e (patch)
tree55fdd58be396226fc7b64829b4cb7033f73f158e
parenta2c101029d5cb3f74ec9a2a9a53cb1d74ab9cc57 (diff)
tgsi/exec: Fix orientation of DDY.
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c
index 268c5a632a5..e22a1643c88 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_exec.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c
@@ -501,7 +501,7 @@ micro_ddy(
dst->f[0] =
dst->f[1] =
dst->f[2] =
- dst->f[3] = src->f[TILE_TOP_LEFT] - src->f[TILE_BOTTOM_LEFT];
+ dst->f[3] = src->f[TILE_BOTTOM_LEFT] - src->f[TILE_TOP_LEFT];
}
static void