• Home
  • Raw
  • Download

Lines Matching refs:getSampler

228         if (!object->getType().getSampler().isImage()) {  in lValueErrorCheck()
376 const TSampler& texSampler = object->getType().getSampler(); in handleLvalue()
726 const TSampler& sampler = base->getType().getSampler(); in handleBracketOperator()
944 const TSampler& sampler = base->getType().getSampler(); in handleDotDereference()
3100 TSampler samplerType = argTex->getType().getSampler(); in handleSamplerTextureCombine()
3107 const bool shadowMode = argSampler->getType().getSampler().shadow; in handleSamplerTextureCombine()
3139 texType.getSampler().shadow = shadowMode; // set appropriate shadow mode. in handleSamplerTextureCombine()
3157 argTex->getWritableType().getSampler().shadow = shadowMode; in handleSamplerTextureCombine()
3783 const TSampler &sampler = argSamp->getType().getSampler(); in decomposeSampleMethods()
3822 const TSampler& sampler = arg0->getType().getSampler(); in decomposeSampleMethods()
3859 const TSampler& sampler = argTex->getType().getSampler(); in decomposeSampleMethods()
3898 const TSampler& sampler = argTex->getType().getSampler(); in decomposeSampleMethods()
3937 const TSampler& sampler = texType.getSampler(); in decomposeSampleMethods()
4070 if (! argSamp->getType().getSampler().isShadow()) { in decomposeSampleMethods()
4135 const TSampler& sampler = argTex->getType().getSampler(); in decomposeSampleMethods()
4206 const TSampler& sampler = argTex->getType().getSampler(); in decomposeSampleMethods()
4305 const TSamplerDim dim = argTex->getType().getSampler().dim; in decomposeSampleMethods()
4319 if (cmpValues > 0 && ! argSamp->getType().getSampler().isShadow()) { in decomposeSampleMethods()
4391 if (! argSamp->getType().getSampler().isShadow()) in decomposeSampleMethods()
4497 const TSampler& sampler = argSubpass->getType().getSampler(); in decomposeSampleMethods()
5846 … if (fnCandidate.getParamCount() > 2 || fnCandidate[0].type->getSampler().dim == EsdRect || in builtInOpCheck()
5847 fnCandidate[0].type->getSampler().shadow) { in builtInOpCheck()
5848 if (! fnCandidate[0].type->getSampler().shadow) in builtInOpCheck()
5854 if (! fnCandidate[0].type->getSampler().shadow) in builtInOpCheck()
5858 if (! fnCandidate[0].type->getSampler().shadow) in builtInOpCheck()
5890 …case EOpTextureFetchOffset: arg = (arg0->getType().getSampler().dim != EsdRect) ? 3 : 2; break; in builtInOpCheck()
7373 return from.getSampler().type == to.getSampler().type && in findFunction()
7374 from.getSampler().arrayed == to.getSampler().arrayed && in findFunction()
7375 from.getSampler().shadow == to.getSampler().shadow && in findFunction()
7376 from.getSampler().ms == to.getSampler().ms && in findFunction()
7377 from.getSampler().dim == to.getSampler().dim; in findFunction()
7425 TSampler to1Sampler = to1.getSampler(); in findFunction()
7426 TSampler to2Sampler = to2.getSampler(); in findFunction()
7428 to1Sampler.vectorSize = to2Sampler.vectorSize = from.getSampler().vectorSize; in findFunction()
7430 if (from.getSampler() == to2Sampler) in findFunction()
7431 return from.getSampler() != to1Sampler; in findFunction()
7432 if (from.getSampler() == to1Sampler) in findFunction()
9911 TSampler& sampler = (*symbol)->getWritableType().getSampler(); in fixTextureShadowModes()