diff options
author | Eric Anholt <[email protected]> | 2012-02-21 12:56:29 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-02-21 13:30:39 -0800 |
commit | 96ba94cad2c728c3772456bc02fbd0863153f4e6 (patch) | |
tree | 4054746b184f95e5a0a3c223116fc99f46150534 /src/mesa | |
parent | 5d2de9232d3bee91a6df49d1558fa00995a235c5 (diff) |
i965/gen6: Fix the size of the GS surface binding table.
I obviously didn't test on gen6 before pushing.
Reviewed-by: Kenneth Graunke <[email protected]>
Tested-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 8edd004f856..09d8373a1a1 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -870,7 +870,7 @@ struct brw_context uint32_t state_offset; uint32_t bind_bo_offset; - uint32_t surf_offset[BRW_MAX_VS_SURFACES]; + uint32_t surf_offset[BRW_MAX_GS_SURFACES]; } gs; struct { |