aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri
diff options
context:
space:
mode:
authorJordan Justen <[email protected]>2015-10-16 10:45:05 -0700
committerJordan Justen <[email protected]>2015-12-09 23:50:38 -0800
commite128a6231870f98930c6634e09eb9c83cf582d4e (patch)
tree94aa2d8fd5a96f02f206b2286fae814b69139069 /src/mesa/drivers/dri
parentaa12a926260532075a402940ec195a7b9a7339f2 (diff)
i965: Disable vector splitting on shared variables
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/mesa/drivers/dri')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp b/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
index b7bad29a8af..0c8ad76aa50 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_vector_splitting.cpp
@@ -105,6 +105,7 @@ ir_vector_reference_visitor::get_variable_entry(ir_variable *var)
switch (var->data.mode) {
case ir_var_uniform:
case ir_var_shader_storage:
+ case ir_var_shader_shared:
case ir_var_shader_in:
case ir_var_shader_out:
case ir_var_system_value: