summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nv30/nvfx_shader.h
diff options
context:
space:
mode:
authorRoy Spliet <[email protected]>2012-07-19 01:56:35 +0200
committerChristoph Bumiller <[email protected]>2012-07-20 20:31:40 +0200
commit542bd6941f5a56f7a3aa84b44d92591488b146bf (patch)
treed9f09d08d1681332bd69fe3933c7719261a19b68 /src/gallium/drivers/nv30/nvfx_shader.h
parent248e6f03313afdfd3c23be269b0da7a1aa31cff2 (diff)
nv30: Support negative offsets in indirect constant access.
Fixes piglit vp-address-01 amongst several others. Signed-off-by: Roy Spliet <[email protected]> Reviewed-by: Lucas Stach <[email protected]> Tested-by: Lucas Stach <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nv30/nvfx_shader.h')
-rw-r--r--src/gallium/drivers/nv30/nvfx_shader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nvfx_shader.h b/src/gallium/drivers/nv30/nvfx_shader.h
index e343bf01698..987e1b043dd 100644
--- a/src/gallium/drivers/nv30/nvfx_shader.h
+++ b/src/gallium/drivers/nv30/nvfx_shader.h
@@ -416,7 +416,7 @@
struct nvfx_reg {
int8_t type;
- uint32_t index;
+ int32_t index;
};
struct nvfx_src {