Home
last modified time | relevance | path

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

/external/deqp-deps/glslang/glslang/MachineIndependent/
Dreflection.cpp408 case EsdCube: in mapSamplerToGlType()
437 case EsdCube: in mapSamplerToGlType()
460 case EsdCube: in mapSamplerToGlType()
479 case EsdCube: in mapSamplerToGlType()
503 case EsdCube: in mapSamplerToGlType()
522 case EsdCube: in mapSamplerToGlType()
541 case EsdCube: in mapSamplerToGlType()
560 case EsdCube: in mapSamplerToGlType()
Dglslang.y2266 $$.sampler.set(EbtFloat, EsdCube);
2281 $$.sampler.set(EbtFloat, EsdCube, false, true);
2306 $$.sampler.set(EbtFloat, EsdCube, true);
2311 $$.sampler.set(EbtFloat, EsdCube, true, true);
2342 $$.sampler.set(EbtFloat16, EsdCube);
2366 $$.sampler.set(EbtFloat16, EsdCube, false, true);
2406 $$.sampler.set(EbtFloat16, EsdCube, true);
2414 $$.sampler.set(EbtFloat16, EsdCube, true, true);
2435 $$.sampler.set(EbtInt, EsdCube);
2450 $$.sampler.set(EbtInt, EsdCube, true);
[all …]
Dglslang_tab.cpp7543 (yyval.interm.type).sampler.set(EbtFloat, EsdCube); in yyparse()
7573 (yyval.interm.type).sampler.set(EbtFloat, EsdCube, false, true); in yyparse()
7623 (yyval.interm.type).sampler.set(EbtFloat, EsdCube, true); in yyparse()
7633 (yyval.interm.type).sampler.set(EbtFloat, EsdCube, true, true); in yyparse()
7684 (yyval.interm.type).sampler.set(EbtFloat16, EsdCube); in yyparse()
7723 (yyval.interm.type).sampler.set(EbtFloat16, EsdCube, false, true); in yyparse()
7788 (yyval.interm.type).sampler.set(EbtFloat16, EsdCube, true); in yyparse()
7801 (yyval.interm.type).sampler.set(EbtFloat16, EsdCube, true, true); in yyparse()
7842 (yyval.interm.type).sampler.set(EbtInt, EsdCube); in yyparse()
7872 (yyval.interm.type).sampler.set(EbtInt, EsdCube, true); in yyparse()
[all …]
DInitialize.cpp105 dimMap[EsdCube] = 3; in TBuiltIns()
6308 if (dim == EsdCube && arrayed && skipCubeArrayed) in add2ndGenerationSamplingImaging()
6411 … int sizeDims = dimMap[sampler.dim] + (sampler.arrayed ? 1 : 0) - (sampler.dim == EsdCube ? 1 : 0); in add2ndGenerationSamplingImaging()
6517 if (sampler.arrayed && sampler.dim != EsdCube) in add2ndGenerationSamplingImaging()
6688 …if (proj && (sampler.dim == EsdCube || sampler.dim == EsdBuffer || sampler.arrayed || sampler.ms |… in add2ndGenerationSamplingImaging()
6697 if (lod && sampler.dim == EsdCube && sampler.shadow) in add2ndGenerationSamplingImaging()
6704 … if (bias && (sampler.dim == Esd2D || sampler.dim == EsdCube) && sampler.shadow && sampler.arrayed) in add2ndGenerationSamplingImaging()
6713 … if (offset && (sampler.dim == EsdCube || sampler.dim == EsdBuffer || sampler.ms)) in add2ndGenerationSamplingImaging()
6722 if (fetch && (sampler.shadow || sampler.dim == EsdCube)) in add2ndGenerationSamplingImaging()
7007 case EsdCube: in add2ndGenerationSamplingImaging()
[all …]
DSymbolTable.cpp106 case EsdCube: mangledName += "C"; break; in buildMangledName()
DParseHelper.cpp129 sampler.set(EbtFloat, EsdCube); in setPrecisionDefaults()
/external/deqp-deps/glslang/glslang/Include/
DTypes.h67 EsdCube, enumerator
240 case EsdCube: s.append("Cube"); break; in getString()
/external/deqp-deps/glslang/hlsl/
DhlslGrammar.cpp1188 case EHTokSamplerCube: dim = EsdCube; break; in acceptSamplerTypeDX9()
1286 case EHTokTextureCube: dim = EsdCube; break; in acceptTextureType()
1287 case EHTokTextureCubearray: dim = EsdCube; array = true; break; in acceptTextureType()
DhlslParseHelper.cpp3791 case EsdCube: constructOp = EOpConstructVec3; coordSize = 3; break; // also 3D in decomposeSampleMethods()
3828 case EsdCube: constructOp = EOpConstructVec3; break; // also 3D in decomposeSampleMethods()
3949 case EsdCube: numDims = 2; break; // W, H (cube) in decomposeSampleMethods()
3970 … ((dim == Esd1D || dim == Esd2D || dim == Esd3D || dim == EsdCube) && !isMs && !isImage) || // 1... in decomposeSampleMethods()
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp312 case glslang::EsdCube: return spv::DimCube; in TranslateDimensionality()
3851 cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow; in translateArguments()
4350 bool cubeCompare = sampler.dim == glslang::EsdCube && sampler.arrayed && sampler.shadow;