Lines Matching refs:srcReg
962 struct prog_src_register *srcReg) in Parse_VectorSrc() argument
978 srcReg->Abs = GL_TRUE; in Parse_VectorSrc()
989 srcReg->Abs = GL_FALSE; in Parse_VectorSrc()
994 srcReg->Negate = srcReg->Abs ? negateAbs : negateBase; in Parse_VectorSrc()
1004 srcReg->File = PROGRAM_TEMPORARY; in Parse_VectorSrc()
1007 srcReg->Index = idx; in Parse_VectorSrc()
1011 srcReg->File = PROGRAM_INPUT; in Parse_VectorSrc()
1014 srcReg->Index = idx; in Parse_VectorSrc()
1018 srcReg->File = PROGRAM_LOCAL_PARAM; in Parse_VectorSrc()
1021 srcReg->Index = idx; in Parse_VectorSrc()
1033 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_VectorSrc()
1034 srcReg->Index = paramIndex; in Parse_VectorSrc()
1045 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_VectorSrc()
1046 srcReg->Index = paramIndex; in Parse_VectorSrc()
1058 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_VectorSrc()
1059 srcReg->Index = paramIndex; in Parse_VectorSrc()
1066 srcReg->Swizzle = SWIZZLE_NOOP; in Parse_VectorSrc()
1078 srcReg->Swizzle = MAKE_SWIZZLE4(swz[0], swz[1], swz[2], swz[3]); in Parse_VectorSrc()
1082 if (srcReg->Abs && !Parse_String(parseState, "|")) { in Parse_VectorSrc()
1092 struct prog_src_register *srcReg) in Parse_ScalarSrcReg() argument
1109 srcReg->Abs = GL_TRUE; in Parse_ScalarSrcReg()
1120 srcReg->Abs = GL_FALSE; in Parse_ScalarSrcReg()
1125 srcReg->Negate = srcReg->Abs ? negateAbs : negateBase; in Parse_ScalarSrcReg()
1132 srcReg->File = PROGRAM_TEMPORARY; in Parse_ScalarSrcReg()
1135 srcReg->Index = idx; in Parse_ScalarSrcReg()
1138 srcReg->File = PROGRAM_INPUT; in Parse_ScalarSrcReg()
1141 srcReg->Index = idx; in Parse_ScalarSrcReg()
1153 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_ScalarSrcReg()
1154 srcReg->Index = paramIndex; in Parse_ScalarSrcReg()
1167 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_ScalarSrcReg()
1168 srcReg->Index = paramIndex; in Parse_ScalarSrcReg()
1179 srcReg->Index = paramIndex; in Parse_ScalarSrcReg()
1180 srcReg->File = PROGRAM_NAMED_PARAM; in Parse_ScalarSrcReg()
1187 srcReg->Swizzle = 0; in Parse_ScalarSrcReg()
1197 srcReg->Swizzle = 0; in Parse_ScalarSrcReg()
1200 srcReg->Swizzle = 1; in Parse_ScalarSrcReg()
1203 srcReg->Swizzle = 2; in Parse_ScalarSrcReg()
1206 srcReg->Swizzle = 3; in Parse_ScalarSrcReg()
1214 if (srcReg->Abs && !Parse_String(parseState, "|")) { in Parse_ScalarSrcReg()