summaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/opt_tree_grafting.cpp
diff options
context:
space:
mode:
authorJordan Justen <[email protected]>2016-01-19 23:27:22 -0800
committerJordan Justen <[email protected]>2016-02-02 10:50:40 -0800
commitbd97b62525e2d58870619b941d43c4545f922a2f (patch)
tree6fc34872bb5002f3846e2ff0b3623e43a7d8dd48 /src/compiler/glsl/opt_tree_grafting.cpp
parentafef1422cbefa0f3e92b3d9e58a6c0960c465027 (diff)
glsl: Disable tree grafting optimization for shared variables
Fixes: * dEQP-GLES31.functional.compute.basic.shared_atomic_op_multiple_groups * dEQP-GLES31.functional.compute.basic.shared_atomic_op_multiple_invocation * dEQP-GLES31.functional.compute.basic.shared_atomic_op_single_group * dEQP-GLES31.functional.compute.basic.shared_atomic_op_single_invocation From https://android.googlesource.com/platform/external/deqp Reported-by: Ilia Mirkin <[email protected]> Signed-off-by: Jordan Justen <[email protected]> Tested-by: Samuel Pitoiset <[email protected]> Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/compiler/glsl/opt_tree_grafting.cpp')
-rw-r--r--src/compiler/glsl/opt_tree_grafting.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/compiler/glsl/opt_tree_grafting.cpp b/src/compiler/glsl/opt_tree_grafting.cpp
index 83effb7424c..812f996fb81 100644
--- a/src/compiler/glsl/opt_tree_grafting.cpp
+++ b/src/compiler/glsl/opt_tree_grafting.cpp
@@ -361,11 +361,12 @@ tree_grafting_basic_block(ir_instruction *bb_first,
if (!lhs_var)
continue;
- if (lhs_var->data.mode == ir_var_function_out ||
- lhs_var->data.mode == ir_var_function_inout ||
- lhs_var->data.mode == ir_var_shader_out ||
- lhs_var->data.mode == ir_var_shader_storage)
- continue;
+ if (lhs_var->data.mode == ir_var_function_out ||
+ lhs_var->data.mode == ir_var_function_inout ||
+ lhs_var->data.mode == ir_var_shader_out ||
+ lhs_var->data.mode == ir_var_shader_storage ||
+ lhs_var->data.mode == ir_var_shader_shared)
+ continue;
ir_variable_refcount_entry *entry = info->refs->get_variable_entry(lhs_var);