diff options
author | Jason Ekstrand <[email protected]> | 2014-11-19 12:53:08 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-01-15 07:19:02 -0800 |
commit | b5143edaeeb6f57558f5bb6fbd7f7cc39ad7489d (patch) | |
tree | 8362d1cbab931746f1cbe2095bceae6d74f0da5a /src/glsl/nir/nir_lower_samplers.cpp | |
parent | 8219ff1796ab18d19fe9cf3cf93f463a984e2c80 (diff) |
nir: Make array deref direct vs. indirect an enum
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_lower_samplers.cpp')
-rw-r--r-- | src/glsl/nir/nir_lower_samplers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_lower_samplers.cpp b/src/glsl/nir/nir_lower_samplers.cpp index 347c84adc9b..be6a75525b7 100644 --- a/src/glsl/nir/nir_lower_samplers.cpp +++ b/src/glsl/nir/nir_lower_samplers.cpp @@ -51,7 +51,7 @@ get_deref_name_offset(nir_deref_var *deref_var, switch (deref->deref_type) { case nir_deref_type_array: deref_array = nir_deref_as_array(deref); - if (deref_array->has_indirect) { + if (deref_array->deref_array_type == nir_deref_array_type_indirect) { /* GLSL 1.10 and 1.20 allowed variable sampler array indices, * while GLSL 1.30 requires that the array indices be * constant integer expressions. We don't expect any driver |