Home | History | Annotate | Download | only in glshared

Lines Matching refs:curType

865 		const VarType*		curType		= &type;
866 while (curType->isArrayType())
868 arraySizes.push_back(curType->getArraySize());
869 curType = &curType->getElementType();
872 if (curType->isBasicType())
874 if ((curType->getFlags() & PRECISION_MASK) != 0)
875 src << PrecisionFlagsFmt(curType->getFlags() & PRECISION_MASK) << " ";
876 src << glu::getDataTypeName(curType->getBasicType());
880 DE_ASSERT(curType->isStructType());
881 generateLocalDeclaration(src, curType->getStruct(), indentLevel+1);