mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
work around a param bug (Adam Jackson)
This commit is contained in:
parent
f43cc67616
commit
3b550e1e3c
1 changed files with 1 additions and 1 deletions
|
|
@ -297,7 +297,7 @@ static void print_reg( struct fragment_program *p,
|
|||
case UREG_TYPE_LOCAL_CONST: emit(p, "local_const"); break;
|
||||
case UREG_TYPE_ENV_CONST: emit(p, "env_const"); break;
|
||||
case UREG_TYPE_STATE_CONST: emit(p, "state_param"); break;
|
||||
case UREG_TYPE_PARAM: emit(p, "param"); break;
|
||||
case UREG_TYPE_PARAM: emit(p, "local_param"); break;
|
||||
};
|
||||
|
||||
emit(p, "[%d]", GET_UREG_NR(arg));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue