diff options
author | Luca Barbieri <[email protected]> | 2010-08-22 00:21:55 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-08-22 15:42:16 +0200 |
commit | a0c45eabf961905ea7bd48b2750fce41c8ba542b (patch) | |
tree | ddec8e9da584d332ec75d554bbe42c4e08dee6f8 /src/gallium/drivers/nvfx/nvfx_state.h | |
parent | 8a878c266a8bf50b49d3ef8c5984790581e33133 (diff) |
nvfx: use relocations array for vp constants
Diffstat (limited to 'src/gallium/drivers/nvfx/nvfx_state.h')
-rw-r--r-- | src/gallium/drivers/nvfx/nvfx_state.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nvfx/nvfx_state.h b/src/gallium/drivers/nvfx/nvfx_state.h index 6d589af5f35..1247abcfa21 100644 --- a/src/gallium/drivers/nvfx/nvfx_state.h +++ b/src/gallium/drivers/nvfx/nvfx_state.h @@ -9,7 +9,6 @@ struct nvfx_vertex_program_exec { uint32_t data[4]; - int const_index; }; struct nvfx_vertex_program_data { @@ -46,6 +45,7 @@ struct nvfx_vertex_program { uint32_t clip_ctrl; struct util_dynarray branch_relocs; + struct util_dynarray const_relocs; }; struct nvfx_fragment_program_data { |