Module: Mesa Branch: master Commit: ef4c42fc3ae468d6cb42fbb8564831549a3bdebe URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ef4c42fc3ae468d6cb42fbb8564831549a3bdebe
Author: Rob Clark <[email protected]> Date: Sun Nov 5 13:53:50 2017 -0500 nir: handle get_buffer_size in nir_lower_atomics_to_ssbo Overlooked initially, be we need to remap the SSBO index for this as well. Signed-off-by: Rob Clark <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> --- src/compiler/nir/nir_lower_atomics_to_ssbo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/nir/nir_lower_atomics_to_ssbo.c b/src/compiler/nir/nir_lower_atomics_to_ssbo.c index 371eb0b9d1..934ae81d75 100644 --- a/src/compiler/nir/nir_lower_atomics_to_ssbo.c +++ b/src/compiler/nir/nir_lower_atomics_to_ssbo.c @@ -59,6 +59,7 @@ lower_instr(nir_intrinsic_instr *instr, unsigned ssbo_offset, nir_builder *b) case nir_intrinsic_ssbo_atomic_comp_swap: case nir_intrinsic_store_ssbo: case nir_intrinsic_load_ssbo: + case nir_intrinsic_get_buffer_size: /* easy case, keep same opcode and just remap SSBO buffer index: */ op = instr->intrinsic; idx_src = (op == nir_intrinsic_store_ssbo) ? 1 : 0; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
