diff options
author | Karol Herbst <[email protected]> | 2019-01-16 00:12:38 +0100 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2019-01-19 20:01:41 +0100 |
commit | 36a76b7192707edce540a7db8809df00e8643514 (patch) | |
tree | b50a34b3befbf7b42d1b38d5d98cf00792b2415b /src/compiler/nir/nir_print.c | |
parent | 6fefd6972438054e3fb45666b6714a5c9c4859b9 (diff) |
nir: rename nir_var_shared to nir_var_mem_shared
Signed-off-by: Karol Herbst <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_print.c')
-rw-r--r-- | src/compiler/nir/nir_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 18a0f8d019a..ab976af1c43 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -419,7 +419,7 @@ get_variable_mode_str(nir_variable_mode mode, bool want_local_global_mode) return "system"; case nir_var_mem_ssbo: return "ssbo"; - case nir_var_shared: + case nir_var_mem_shared: return "shared"; case nir_var_shader_temp: return want_local_global_mode ? "shader_temp" : ""; |