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/nv30_state.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/nv30_state.h')
-rw-r--r-- | src/gallium/drivers/nv30/nv30_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv30/nv30_state.h b/src/gallium/drivers/nv30/nv30_state.h index 964676a90e1..e27e16fae82 100644 --- a/src/gallium/drivers/nv30/nv30_state.h +++ b/src/gallium/drivers/nv30/nv30_state.h @@ -63,7 +63,7 @@ struct nv30_sampler_view { struct nv30_shader_reloc { unsigned location; - unsigned target; + int target; }; struct nv30_vertprog_exec { |