summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_gather_info.c
diff options
context:
space:
mode:
authorJason Ekstrand <jason.ekstrand@intel.com>2016-06-01 18:29:09 -0700
committerJason Ekstrand <jason.ekstrand@intel.com>2016-06-03 19:29:28 -0700
commit4d3b8318a714c470d12636a41b08bd60688f6c3b (patch)
tree6edd1a9934c4b9d51125e6b4f18bf2323f1578ac /src/compiler/nir/nir_gather_info.c
parent56a178922fa200c98cbbb177e5fab106ad01072b (diff)
downloadexternal_mesa3d-4d3b8318a714c470d12636a41b08bd60688f6c3b.zip
external_mesa3d-4d3b8318a714c470d12636a41b08bd60688f6c3b.tar.gz
external_mesa3d-4d3b8318a714c470d12636a41b08bd60688f6c3b.tar.bz2
nir/info: Get rid of uses_interp_var_at_offset
We were using this briefly in the i965 driver to trigger recompiles but we haven't been using it since we switched to the NIR y-transform lowering pass. Signed-off-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/compiler/nir/nir_gather_info.c')
-rw-r--r--src/compiler/nir/nir_gather_info.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/compiler/nir/nir_gather_info.c b/src/compiler/nir/nir_gather_info.c
index 15a9a4f..2d6efd5 100644
--- a/src/compiler/nir/nir_gather_info.c
+++ b/src/compiler/nir/nir_gather_info.c
@@ -57,10 +57,6 @@ gather_intrinsic_info(nir_intrinsic_instr *instr, nir_shader *shader)
shader->info.gs.uses_end_primitive = 1;
break;
- case nir_intrinsic_interp_var_at_offset:
- shader->info.uses_interp_var_at_offset = 1;
- break;
-
default:
break;
}