diff options
author | Roy Spliet <[email protected]> | 2012-07-19 01:56:35 +0200 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2012-07-20 20:31:40 +0200 |
commit | 542bd6941f5a56f7a3aa84b44d92591488b146bf (patch) | |
tree | d9f09d08d1681332bd69fe3933c7719261a19b68 /src/gallium/drivers/nv30/nvfx_shader.h | |
parent | 248e6f03313afdfd3c23be269b0da7a1aa31cff2 (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.h | 2 |
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 { |