From: Jordan Justen Date: Fri, 16 Oct 2015 17:45:05 +0000 (-0700) Subject: i965: Disable vector splitting on shared variables X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e128a6231870f98930c6634e09eb9c83cf582d4e;p=mesa.git i965: Disable vector splitting on shared variables Signed-off-by: Jordan Justen Reviewed-by: Iago Toral Quiroga Reviewed-by: Kristian Høgsberg --- 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: