diff options
Diffstat (limited to 'src/compiler/nir')
-rw-r--r-- | src/compiler/nir/nir.h | 3 | ||||
-rw-r--r-- | src/compiler/nir/nir_gather_info.c | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 3f9309c..ec7b0c7 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -1723,9 +1723,6 @@ typedef struct nir_shader_info { /* Whether or not this shader ever uses textureGather() */ bool uses_texture_gather; - /** Whether or not this shader uses nir_intrinsic_interp_var_at_offset */ - bool uses_interp_var_at_offset; - /* Whether or not this shader uses the gl_ClipDistance output */ bool uses_clip_distance_out; 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; } |