mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 18:40:13 +01:00
iris: Move down iris_emit_sbe_swiz in profiles.
Harvest the information gathered in the previous patch inside of iris. Reviewed-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Mathias Fröhlich <Mathias.Froehlich@web.de> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/308>
This commit is contained in:
parent
630154e77b
commit
0ea3ca3eca
1 changed files with 2 additions and 1 deletions
|
|
@ -3872,7 +3872,8 @@ iris_emit_sbe_swiz(struct iris_batch *batch,
|
|||
|
||||
/* XXX: this should be generated when putting programs in place */
|
||||
|
||||
for (int fs_attr = 0; fs_attr < VARYING_SLOT_MAX; fs_attr++) {
|
||||
for (uint8_t idx = 0; idx < wm_prog_data->urb_setup_attribs_count; idx++) {
|
||||
const uint8_t fs_attr = wm_prog_data->urb_setup_attribs[idx];
|
||||
const int input_index = wm_prog_data->urb_setup[fs_attr];
|
||||
if (input_index < 0 || input_index >= 16)
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue