diff options
author | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-02-09 14:51:28 -0800 |
---|---|---|
committer | Jason Ekstrand <jason.ekstrand@intel.com> | 2016-02-10 16:33:50 -0800 |
commit | 8750299a420af76cebd3067f6f603eacde06ae06 (patch) | |
tree | 9668b5b42f3029de2472090f6e7d9f0e676b8164 /src/compiler/nir/nir.h | |
parent | 70dff4a55e767de8b9ce10f055b94ebb1f6a9755 (diff) | |
download | external_mesa3d-8750299a420af76cebd3067f6f603eacde06ae06.zip external_mesa3d-8750299a420af76cebd3067f6f603eacde06ae06.tar.gz external_mesa3d-8750299a420af76cebd3067f6f603eacde06ae06.tar.bz2 |
nir: Remove the const_offset from nir_tex_instr
When NIR was originally drafted, there was no easy way to determine if
something was constant or not. The result was that we had lots of
special-casing for constant values such as this. Now that load_const
instructions are SSA-only, it's really easy to find constants and this
isn't really needed anymore.
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
Reviewed-by: Rob Clark <robclark@gmail.com>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 8085341..cccb3a4 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -1010,9 +1010,6 @@ typedef struct { */ bool is_new_style_shadow; - /* constant offset - must be 0 if the offset source is used */ - int const_offset[4]; - /* gather component selector */ unsigned component : 2; |