mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
i965/fs: Do not split buffer variables
Buffer variables are the same as uniforms, only that read/write, so we want the same treatment. Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
This commit is contained in:
parent
2773a7cf1d
commit
6335c79236
1 changed files with 1 additions and 0 deletions
|
|
@ -106,6 +106,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_in:
|
||||
case ir_var_shader_out:
|
||||
case ir_var_system_value:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue