Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
DOutputASM.cpp3253 int requestedLocation = fragmentOutput->getType().getLayoutQualifier().location; in declareFragmentOutput() local
3255 if(requestedLocation < 0) in declareFragmentOutput()
3257 …ASSERT(requestedLocation == -1); // All other negative values would have been prevented in TParseC… in declareFragmentOutput()
3260 else if((requestedLocation + registerCount) > sw::RENDERTARGETS) in declareFragmentOutput()
3267 if(requestedLocation != currentIndex) in declareFragmentOutput()
3275 if(fragmentOutputs.size() <= (size_t)requestedLocation) in declareFragmentOutput()
3277 while(fragmentOutputs.size() < (size_t)requestedLocation) in declareFragmentOutput()
3290 if(!fragmentOutputs[requestedLocation + i]) in declareFragmentOutput()
3292 fragmentOutputs[requestedLocation + i] = fragmentOutput; in declareFragmentOutput()