Home
last modified time | relevance | path

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

/external/deqp/framework/opengl/
DgluVarType.cpp297 std::vector<std::string> layoutDeclarationList; in operator <<() local
300 layoutDeclarationList.push_back("location=" + de::toString(layout.location)); in operator <<()
303 layoutDeclarationList.push_back("binding=" + de::toString(layout.binding)); in operator <<()
306 layoutDeclarationList.push_back("offset=" + de::toString(layout.offset)); in operator <<()
309 layoutDeclarationList.push_back(getFormatLayoutName(layout.format)); in operator <<()
312 layoutDeclarationList.push_back(getMatrixOrderName(layout.matrixOrder)); in operator <<()
314 if (!layoutDeclarationList.empty()) in operator <<()
316 str << "layout(" << layoutDeclarationList[0]; in operator <<()
318 for (int layoutNdx = 1; layoutNdx < (int)layoutDeclarationList.size(); ++layoutNdx) in operator <<()
319 str << ", " << layoutDeclarationList[layoutNdx]; in operator <<()