mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 02:40:46 +02:00
mesa: copy Flags in _mesa_clone_parameter_list()
This commit is contained in:
parent
68020ca2af
commit
a7264720b4
1 changed files with 1 additions and 0 deletions
|
|
@ -622,6 +622,7 @@ _mesa_clone_parameter_list(const struct gl_program_parameter_list *list)
|
|||
ASSERT(j >= 0);
|
||||
pCopy = clone->Parameters + j;
|
||||
pCopy->Used = p->Used;
|
||||
pCopy->Flags = p->Flags;
|
||||
/* copy state indexes */
|
||||
if (p->Type == PROGRAM_STATE_VAR) {
|
||||
GLint k;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue