Lines Matching refs:decl
1171 struct tgsi_full_declaration decl;
1182 decl = tgsi_default_full_declaration();
1183 decl.Declaration.File = TGSI_FILE_INPUT;
1184 decl.Declaration.Semantic = true;
1185 decl.Range.First = decl.Range.Last = inbase + i;
1186 decl.Semantic.Name = TGSI_SEMANTIC_BCOLOR;
1187 decl.Semantic.Index = info->input_semantic_index[in_idx];
1188 decl.Declaration.Interpolate = true;
1189 decl.Interp.Interpolate = info->input_interpolate[in_idx];
1190 decl.Interp.Location = info->input_interpolate_loc[in_idx];
1191 tctx->emit_declaration(tctx, &decl);
1196 decl = tgsi_default_full_declaration();
1197 decl.Declaration.File = TGSI_FILE_INPUT;
1198 decl.Declaration.Semantic = true;
1199 decl.Range.First = decl.Range.Last = inbase + ctx->two_side_colors;
1200 decl.Semantic.Name = TGSI_SEMANTIC_FACE;
1201 decl.Semantic.Index = 0;
1202 tctx->emit_declaration(tctx, &decl);
1204 ctx->face_idx = decl.Range.First;
1209 decl = tgsi_default_full_declaration();
1210 decl.Declaration.File = TGSI_FILE_TEMPORARY;
1211 decl.Range.First = decl.Range.Last = tmpbase + ctx->numtmp + i;
1212 tctx->emit_declaration(tctx, &decl);
1254 struct tgsi_full_declaration decl;
1281 decl = tgsi_default_full_declaration();
1282 decl.Declaration.File = TGSI_FILE_TEMPORARY;
1283 decl.Range.First = decl.Range.Last = tmpbase + i;
1284 tctx->emit_declaration(tctx, &decl);