Home | History | Annotate | Download | only in functional

Lines Matching refs:structType

218 		const glu::StructType&	structType	= *type.getStructPtr();
220 for (int i = 0; i < structType.getNumMembers(); i++)
221 result += numBasicSubobjects(structType.getMember(i).getType());
5600 vector<glu::StructType> m_structTypes;
5639 const glu::StructType& structType = *rootType.getStructPtr();
5640 const int numMembers = structType.getNumMembers();
5645 const glu::StructMember& member = structType.getMember(membNdx);
5848 m_structTypes.push_back(glu::StructType("S"));
5851 glu::StructType& structType = m_structTypes.back();
5852 const glu::VarType structVarType (&structType);
5854 structType.addMember("x", glu::VarType(glu::TYPE_INT, glu::PRECISION_HIGHP));
5855 structType.addMember("y", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP));
5856 structType.addMember("z", glu::VarType(highpFloat, 2));
5881 tcsDeclarations += de::toString(glu::declare(structType)) + ";\n";
5903 tesDeclarations += de::toString(glu::declare(structType)) + ";\n";