Home | History | Annotate | Download | only in opengl

Lines Matching refs:curType

107 		VarType curType = getVarType(type, path);
113 TCU_CHECK_MSG(curType.isStructType(), "Invalid field selector");
118 for (; ndx < curType.getStructPtr()->getNumMembers(); ndx++)
120 if (memberName == curType.getStructPtr()->getMember(ndx).getName())
123 TCU_CHECK_MSG(ndx < curType.getStructPtr()->getNumMembers(), "Member not found in type");
135 if (curType.isArrayType())
137 TCU_CHECK(de::inBounds(ndx, 0, curType.getArraySize()));
140 else if (curType.isBasicType() && isDataTypeMatrix(curType.getBasicType()))
142 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeMatrixNumColumns(curType.getBasicType())));
145 else if (curType.isBasicType() && isDataTypeVector(curType.getBasicType()))
147 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeScalarSize(curType.getBasicType())));
164 const VarType* curType = &format.type;
171 curType = &curType->getElementType(); // Update current type.
181 const StructMember& member = curType->getStructPtr()->getMember(iter->index);
183 curType = &member.getType();