Lines Matching full:fdec
912 const struct tgsi_full_declaration *fdec)
914 unsigned idx = fdec->Range.First;
917 switch (fdec->Semantic.Name) {
922 hw = NVFX_FP_OP_INPUT_SRC_COL0 + fdec->Semantic.Index;
931 if (fdec->Semantic.Index >= 8)
934 fpc->fp->texcoord[fdec->Semantic.Index] = fdec->Semantic.Index;
935 fpc->fp->texcoords |= (1 << fdec->Semantic.Index);
936 fpc->fp->vp_or |= (0x00004000 << fdec
937 hw = NVFX_FP_OP_INPUT_SRC_TC(fdec->Semantic.Index);
950 const struct tgsi_full_declaration *fdec)
953 unsigned idx = fdec->Range.First;
956 switch (fdec->Semantic.Name) {
958 if (fdec->Semantic.Index >= 8) {
961 fpc->fp->texcoord[hw] = fdec->Semantic.Index;
968 if (fdec->Semantic.Index == 9)
985 const struct tgsi_full_declaration *fdec)
987 unsigned idx = fdec->Range.First;
990 switch (fdec->Semantic.Name) {
996 switch (fdec->Semantic.Index) {
1033 const struct tgsi_full_declaration *fdec;
1034 fdec = &p.FullToken.FullDeclaration;
1035 switch (fdec->Declaration.File) {
1037 if (!nvfx_fragprog_parse_decl_input(nvfx, fpc, fdec))
1041 if (!nvfx_fragprog_parse_decl_output(nvfx, fpc, fdec))
1045 if (fdec->Range.Last > high_temp) {
1047 fdec->Range.Last;
1074 const struct tgsi_full_declaration *fdec;
1078 fdec = &p.FullToken.FullDeclaration;
1079 switch (fdec->Declaration.File) {
1081 if (!nvfx_fragprog_assign_generic(nvfx, fpc, fdec))