mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
Indentation fixes.
This commit is contained in:
parent
4c5879ff31
commit
8a430dd4da
2 changed files with 14 additions and 14 deletions
|
|
@ -2540,14 +2540,14 @@ yyreduce:
|
|||
(yyval.src_reg).Base.Index = s->param_binding_begin;
|
||||
break;
|
||||
case at_attrib:
|
||||
(yyval.src_reg).Base.File = PROGRAM_INPUT;
|
||||
(yyval.src_reg).Base.Index = s->attrib_binding;
|
||||
state->prog->InputsRead |= (1U << (yyval.src_reg).Base.Index);
|
||||
(yyval.src_reg).Base.File = PROGRAM_INPUT;
|
||||
(yyval.src_reg).Base.Index = s->attrib_binding;
|
||||
state->prog->InputsRead |= (1U << (yyval.src_reg).Base.Index);
|
||||
|
||||
if (!validate_inputs(& (yylsp[(1) - (1)]), state)) {
|
||||
YYERROR;
|
||||
}
|
||||
break;
|
||||
if (!validate_inputs(& (yylsp[(1) - (1)]), state)) {
|
||||
YYERROR;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
YYERROR;
|
||||
|
|
|
|||
|
|
@ -608,14 +608,14 @@ srcReg: IDENTIFIER /* temporaryReg | progParamSingle */
|
|||
$$.Base.Index = s->param_binding_begin;
|
||||
break;
|
||||
case at_attrib:
|
||||
$$.Base.File = PROGRAM_INPUT;
|
||||
$$.Base.Index = s->attrib_binding;
|
||||
state->prog->InputsRead |= (1U << $$.Base.Index);
|
||||
$$.Base.File = PROGRAM_INPUT;
|
||||
$$.Base.Index = s->attrib_binding;
|
||||
state->prog->InputsRead |= (1U << $$.Base.Index);
|
||||
|
||||
if (!validate_inputs(& @1, state)) {
|
||||
YYERROR;
|
||||
}
|
||||
break;
|
||||
if (!validate_inputs(& @1, state)) {
|
||||
YYERROR;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
YYERROR;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue