diff options
author | Iago Toral Quiroga <[email protected]> | 2015-09-30 11:06:30 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-10-05 08:12:17 +0200 |
commit | 20cbe3688aec2fd371fea096e6a0de0a38c2ae70 (patch) | |
tree | 081487bb55f37052e0c53eb92c33188ab7db0a2e /src | |
parent | 41c4d45e08b3bf948f24d007c9b7d0c47f3f89d8 (diff) |
i965: Reserve binding table space for SSBO surfaces
These share the space with UBO surfaces but we need to make sure we
allocate enough space for both sets (12 of each)
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 0ffc262f289..8efecf98218 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -751,6 +751,7 @@ struct brw_vs_prog_data { #define BRW_MAX_SURFACES (BRW_MAX_DRAW_BUFFERS + \ BRW_MAX_TEX_UNIT * 2 + /* normal, gather */ \ BRW_MAX_UBO + \ + BRW_MAX_SSBO + \ BRW_MAX_ABO + \ BRW_MAX_IMAGES + \ 2 + /* shader time, pull constants */ \ |