Skip to content
Snippets Groups Projects
Commit 20cbe368 authored by Iago Toral's avatar Iago Toral
Browse files

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's avatarKenneth Graunke <kenneth@whitecape.org>
parent 41c4d45e
No related branches found
No related tags found
No related merge requests found
......@@ -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 */ \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment