Home | History | Annotate | Download | only in opengl

Lines Matching refs:curType

359 	const VarType*		curType	= &type;
363 while (curType->isArrayType())
365 arraySizes.push_back(curType->getArraySize());
366 curType = &curType->getElementType();
369 if (curType->isBasicType())
371 if (curType->getPrecision() != PRECISION_LAST)
372 str << glu::getPrecisionName(curType->getPrecision()) << " ";
373 str << glu::getDataTypeName(curType->getBasicType());
375 else if (curType->isStructType())
377 const StructType* structPtr = curType->getStructPtr();