diff options
author | Karol Herbst <[email protected]> | 2019-03-24 20:43:55 +0100 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2019-04-12 09:02:59 +0200 |
commit | 4a3c04a11f41b5a280a4e284eb1795af2b1236a9 (patch) | |
tree | 42702e1181fe7961238e6298d4ab714da53bc91d /src/compiler/nir/nir.h | |
parent | 0b2e8d9e17452c62d1cc08ca290b0984ae592899 (diff) |
glsl/nir: add support for lowering bindless images_derefs
v2: handle atomics as well
make use of nir_rewrite_image_intrinsic
v3: remove call to nir_remove_dead_derefs
v4: (Timothy Arceri) dont actually call lowering yet
Signed-off-by: Karol Herbst <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]> (v3)
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 956b716d38d..0f110dd959f 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -1409,7 +1409,7 @@ nir_intrinsic_align(const nir_intrinsic_instr *intrin) /* Converts a image_deref_* intrinsic into a image_* one */ void nir_rewrite_image_intrinsic(nir_intrinsic_instr *instr, - nir_ssa_def *handle); + nir_ssa_def *handle, bool bindless); /** * \group texture information |