mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
freedreno/ir3: remove assert
Fixes dEQP-GLES31.functional.ubo.random.all_per_block_buffers.13 and .20
ca3eb5db66 went from silently truncating
the constant state, which was also the wrong thing to do, to an assert.
Which then showed up in a couple of dEQPs. Actually there is nothing
wrong with larger constant file so just drop the assert.
Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
parent
7f85283103
commit
8c97b3c546
1 changed files with 0 additions and 1 deletions
|
|
@ -132,7 +132,6 @@ void * ir3_shader_assemble(struct ir3_shader_variant *v, uint32_t gpu_id)
|
|||
* the assembler what the max addr reg value can be:
|
||||
*/
|
||||
v->constlen = MAX2(v->constlen, v->info.max_const + 1);
|
||||
debug_assert(v->constlen < 256);
|
||||
|
||||
fixup_regfootprint(v, gpu_id);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue