mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
gallium/tgsi: add patch support to tgsi_get_gl_varying_semantic()
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
452586b56a
commit
9755eeb15a
1 changed files with 8 additions and 3 deletions
|
|
@ -154,9 +154,14 @@ tgsi_get_gl_varying_semantic(gl_varying_slot attr,
|
|||
default:
|
||||
assert(attr >= VARYING_SLOT_VAR0 ||
|
||||
(attr >= VARYING_SLOT_TEX0 && attr <= VARYING_SLOT_TEX7));
|
||||
*semantic_name = TGSI_SEMANTIC_GENERIC;
|
||||
*semantic_index =
|
||||
tgsi_get_generic_gl_varying_index(attr, needs_texcoord_semantic);
|
||||
if (attr >= VARYING_SLOT_PATCH0) {
|
||||
*semantic_name = TGSI_SEMANTIC_PATCH;
|
||||
*semantic_index = attr - VARYING_SLOT_PATCH0;
|
||||
} else {
|
||||
*semantic_name = TGSI_SEMANTIC_GENERIC;
|
||||
*semantic_index =
|
||||
tgsi_get_generic_gl_varying_index(attr, needs_texcoord_semantic);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue