i965: Don't use MAX_SURFACES in mark_surface_used
Vulkan doesn't respect MAX_SURFACES so this assert isn't valid in that case. It should, however, assert that it isn't insanely large. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -33,7 +33,10 @@ extern "C" void
|
||||
brw_mark_surface_used(struct brw_stage_prog_data *prog_data,
|
||||
unsigned surf_index)
|
||||
{
|
||||
assert(surf_index < BRW_MAX_SURFACES);
|
||||
/* A binding table index is 8 bits and the top 3 values are reserved for
|
||||
* special things (stateless and SLM).
|
||||
*/
|
||||
assert(surf_index <= 252);
|
||||
|
||||
prog_data->binding_table.size_bytes =
|
||||
MAX2(prog_data->binding_table.size_bytes, (surf_index + 1) * 4);
|
||||
|
Reference in New Issue
Block a user