diff options
author | Michal Krol <[email protected]> | 2009-11-26 20:38:43 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-11-26 20:41:46 +0100 |
commit | 884007546c98b1779bf266ec5111b1e7e2b68b2e (patch) | |
tree | 55fdd58be396226fc7b64829b4cb7033f73f158e /src/gallium/auxiliary/tgsi | |
parent | a2c101029d5cb3f74ec9a2a9a53cb1d74ab9cc57 (diff) |
tgsi/exec: Fix orientation of DDY.
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
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 |