mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 21:40:08 +01:00
fix bug causing unnecessary translations
This commit is contained in:
parent
bbcbd362a9
commit
ae7f200788
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ find_translated_vp(struct st_context *st,
|
|||
* XXX This could be a hash lookup, using InputsRead as the key.
|
||||
*/
|
||||
for (xvp = stfp->vertex_programs; xvp; xvp = xvp->next) {
|
||||
if (xvp->frag_inputs == stfp->Base.Base.InputsRead) {
|
||||
if (xvp->frag_inputs == fragInputsRead) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue