diff options
author | Jordan Justen <[email protected]> | 2015-07-28 15:17:34 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2015-12-09 23:50:38 -0800 |
commit | aa12a926260532075a402940ec195a7b9a7339f2 (patch) | |
tree | 44dc8df5d37401950ebf5fbe19adbb9cf817c36e /src/glsl/nir/nir_intrinsics.h | |
parent | 03b043993834573c69fb08ad74ef485cb0dd310b (diff) |
nir: Translate glsl shared var store intrinsic to nir intrinsic
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_intrinsics.h')
-rw-r--r-- | src/glsl/nir/nir_intrinsics.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glsl/nir/nir_intrinsics.h b/src/glsl/nir/nir_intrinsics.h index 011b95db9d6..cf9aa888561 100644 --- a/src/glsl/nir/nir_intrinsics.h +++ b/src/glsl/nir/nir_intrinsics.h @@ -278,5 +278,6 @@ LOAD(shared, 0, 1, NIR_INTRINSIC_CAN_ELIMINATE) STORE(output, 0, 0, 0, 0) STORE(per_vertex_output, 1, 1, 0, 0) STORE(ssbo, 1, 1, 1, 0) +STORE(shared, 0, 0, 1, 0) -LAST_INTRINSIC(store_ssbo_indirect) +LAST_INTRINSIC(store_shared_indirect) |