mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 15:00:10 +01:00
glsl/ast: assign explicit_xfb_buffer from correct place
This fixes: GL44-CTS.tessellation_shader.tessellation_control_to_tessellation_evaluation.data_pass_through As the OUT_TC interface structures weren't matching because one of them had explicit_xfb_buffer set when it shouldn't. Reviewed-by: Timothy Arceri <timothy.arceri@collabora.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
c8835a5924
commit
c952c0e713
1 changed files with 1 additions and 1 deletions
|
|
@ -6656,7 +6656,7 @@ ast_process_struct_or_iface_block_members(exec_list *instructions,
|
|||
xfb_buffer = (int) qual_xfb_buffer;
|
||||
} else {
|
||||
if (layout)
|
||||
explicit_xfb_buffer = layout->flags.q.xfb_buffer;
|
||||
explicit_xfb_buffer = layout->flags.q.explicit_xfb_buffer;
|
||||
xfb_buffer = (int) block_xfb_buffer;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue