Home
last modified time | relevance | path

Searched refs:dotLocation (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DParseHelper.cpp2666 …seContext::addFieldSelectionExpression(TIntermTyped *baseExpression, const TSourceLoc &dotLocation, in addFieldSelectionExpression() argument
2706 indexedExpression = intermediate.addIndex(EOpVectorSwizzle, baseExpression, index, dotLocation); in addFieldSelectionExpression()
2725 error(dotLocation, " non-scalar fields not implemented yet", "."); in addFieldSelectionExpression()
2731 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation); in addFieldSelectionExpression()
2742 indexedExpression = intermediate.addIndex(EOpIndexDirect, baseExpression, index, dotLocation); in addFieldSelectionExpression()
2752 error(dotLocation, "structure has no fields", "Internal Error"); in addFieldSelectionExpression()
2771 indexedExpression = addConstStruct(fieldString, baseExpression, dotLocation); in addFieldSelectionExpression()
2789 …ndexedExpression = intermediate.addIndex(EOpIndexDirectStruct, baseExpression, index, dotLocation); in addFieldSelectionExpression()
2795 error(dotLocation, " no such field in structure", fieldString.c_str()); in addFieldSelectionExpression()
2807 error(dotLocation, "interface block has no fields", "Internal Error"); in addFieldSelectionExpression()
[all …]
DParseHelper.h202 …eldSelectionExpression(TIntermTyped *baseExpression, const TSourceLoc &dotLocation, const TString …