mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 11:10:10 +01:00
iris: update bindings when changing programs
the binding table layout depends on program info. not known to fix anything yet.
This commit is contained in:
parent
b0e9c5797b
commit
f0159d5ca3
1 changed files with 1 additions and 1 deletions
|
|
@ -107,7 +107,7 @@ dirty_flag_for_cache(enum iris_program_cache_id cache_id)
|
|||
if (cache_id == IRIS_CACHE_VS)
|
||||
return IRIS_DIRTY_VS | IRIS_DIRTY_VF_SGVS;
|
||||
|
||||
return IRIS_DIRTY_VS << cache_id;
|
||||
return IRIS_DIRTY_VS << cache_id | IRIS_DIRTY_BINDINGS_VS << cache_id;
|
||||
}
|
||||
|
||||
static unsigned
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue