From 6f2b6952bef69af9cf8ae66be4261837bacb3137 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 16 Sep 2020 20:24:23 +0200 Subject: [PATCH] nir: remove ubo_r600 instrinsic since ubo_vec4 is used now As suggested by Eric. Signed-off-by: Gert Wollny eviewed-by: Eric Anholt Part-of: --- src/compiler/nir/nir_intrinsics.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/compiler/nir/nir_intrinsics.py b/src/compiler/nir/nir_intrinsics.py index e63900082ab..ae560fc48a1 100644 --- a/src/compiler/nir/nir_intrinsics.py +++ b/src/compiler/nir/nir_intrinsics.py @@ -899,12 +899,6 @@ load("sampler_lod_parameters_pan", [1], [CAN_ELIMINATE, CAN_REORDER]) # R600 specific instrincs # -# R600 can only fetch 16 byte aligned data from an UBO, and the actual offset -# is given in vec4 units, so we have to fetch the a vec4 and get the component -# later -# src[] = { buffer_index, offset }. -load("ubo_r600", [1, 1], [ACCESS, ALIGN_MUL, ALIGN_OFFSET], flags=[CAN_ELIMINATE, CAN_REORDER]) - # location where the tesselation data is stored in LDS system_value("tcs_in_param_base_r600", 4) system_value("tcs_out_param_base_r600", 4)