| /third_party/glslang/glslang/MachineIndependent/ |
| D | reflection.cpp | 707 case false: return sampler.arrayed ? GL_SAMPLER_1D_ARRAY : GL_SAMPLER_1D; in mapSamplerToGlType() 708 … case true: return sampler.arrayed ? GL_SAMPLER_1D_ARRAY_SHADOW : GL_SAMPLER_1D_SHADOW; in mapSamplerToGlType() 714 case false: return sampler.arrayed ? GL_SAMPLER_2D_ARRAY : GL_SAMPLER_2D; in mapSamplerToGlType() 715 … case true: return sampler.arrayed ? GL_SAMPLER_2D_ARRAY_SHADOW : GL_SAMPLER_2D_SHADOW; in mapSamplerToGlType() 717 …case true: return sampler.arrayed ? GL_SAMPLER_2D_MULTISAMPLE_ARRAY : GL_SAMPLER_2D_MULTISAMP… in mapSamplerToGlType() 723 … case false: return sampler.arrayed ? GL_SAMPLER_CUBE_MAP_ARRAY : GL_SAMPLER_CUBE; in mapSamplerToGlType() 724 … case true: return sampler.arrayed ? GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW : GL_SAMPLER_CUBE_SHADOW; in mapSamplerToGlType() 735 … case false: return sampler.arrayed ? GL_FLOAT16_SAMPLER_1D_ARRAY_AMD : GL_FLOAT16_SAMPLER_1D_AMD; in mapSamplerToGlType() 736 …case true: return sampler.arrayed ? GL_FLOAT16_SAMPLER_1D_ARRAY_SHADOW_AMD : GL_FLOAT16_SAMPLER_1… in mapSamplerToGlType() 742 … case false: return sampler.arrayed ? GL_FLOAT16_SAMPLER_2D_ARRAY_AMD : GL_FLOAT16_SAMPLER_2D_AMD; in mapSamplerToGlType() [all …]
|
| D | Initialize.cpp | 5776 for (int arrayed = 0; arrayed <= 1; ++arrayed) { // loop over "bool" arrayed or not local 5787 if (dim == EsdSubpass && (image || shadow || arrayed)) 5793 if (dim == EsdSubpass && (image || shadow || arrayed)) 5801 if (dim == EsdBuffer && (shadow || arrayed || ms)) 5803 if (ms && arrayed && profile == EEsProfile && version < 310) 5808 if (dim == EsdCube && arrayed && skipCubeArrayed) 5810 if ((dim == Esd3D || dim == EsdRect) && arrayed) 5834 … sampler.setImage(bTypes[bType], (TSamplerDim)dim, arrayed ? true : false, 5838 sampler.set(bTypes[bType], (TSamplerDim)dim, arrayed ? true : false, 5868 … sampler.setTexture(sampler.type, sampler.dim, sampler.arrayed, sampler.shadow, [all …]
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
| D | SpirvUtils.cpp | 44 wgpu::TextureViewDimension SpirvDimToTextureViewDimension(spv::Dim dim, bool arrayed) { in SpirvDimToTextureViewDimension() argument 49 if (arrayed) { in SpirvDimToTextureViewDimension() 57 if (arrayed) { in SpirvDimToTextureViewDimension()
|
| D | SpirvUtils.h | 35 wgpu::TextureViewDimension SpirvDimToTextureViewDimension(spv::Dim dim, bool arrayed);
|
| D | ShaderModuleGL.cpp | 116 SpirvDimToTextureViewDimension(imageType.dim, imageType.arrayed); in ExtractSpirvInfo() 128 DAWN_INVALID_IF(imageType.ms && imageType.arrayed, in ExtractSpirvInfo() 182 SpirvDimToTextureViewDimension(imageType.dim, imageType.arrayed); in ExtractSpirvInfo()
|
| /third_party/skia/third_party/externals/tint/src/reader/spirv/ |
| D | enum_converter.cc | 103 ast::TextureDimension EnumConverter::ToDim(SpvDim dim, bool arrayed) { in ToDim() argument 104 if (arrayed) { in ToDim()
|
| D | enum_converter.h | 61 ast::TextureDimension ToDim(SpvDim dim, bool arrayed);
|
| D | enum_converter_test.cc | 244 bool arrayed; member 249 out << "DimCase{ SpvDim:" << int(dc.dim) << " arrayed?:" << int(dc.arrayed) in operator <<() 274 const auto result = converter_.ToDim(params.dim, params.arrayed); in TEST_P()
|
| /third_party/openGLES/extensions/ARB/ |
| D | ARB_arrays_of_arrays.txt | 222 "Some inputs and outputs are arrayed, meaning that for an interface between 235 non-arrayed input is not declared with the same type, qualification, and 236 array dimensionality as the matching output. It is an error if an arrayed 239 arrayed output is not declared as an array of the same type and 250 If such an arrayed interface variable is not declared with the necessary 253 "For non-arrayed interfaces (meaning array dimensionally stays the same between 259 "If the output corresponding to an arrayed input is itself an array, it
|
| D | ARB_shader_image_size.txt | 135 Returns the dimensions of the image or images bound to <image>. For arrayed 138 in the cube map array, if arrayed.
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
| D | ARB_arrays_of_arrays.txt | 212 "Some inputs and outputs are arrayed, meaning that for an interface between 225 non-arrayed input is not declared with the same type, qualification, and 226 array dimensionality as the matching output. It is an error if an arrayed 229 arrayed output is not declared as an array of the same type and 240 If such an arrayed interface variable is not declared with the necessary 243 "For non-arrayed interfaces (meaning array dimensionally stays the same between 249 "If the output corresponding to an arrayed input is itself an array, it
|
| D | ARB_shader_image_size.txt | 125 Returns the dimensions of the image or images bound to <image>. For arrayed 128 in the cube map array, if arrayed.
|
| /third_party/spirv-tools/source/val/ |
| D | validate_image.cpp | 79 uint32_t arrayed = 0; member 109 info->arrayed = inst->word(5); in GetImageTypeInfo() 232 return GetPlaneCoordSize(info) + info.arrayed + (IsProj(opcode) ? 1 : 0); in GetMinCoordSize() 641 if (info.arrayed != 0) { in ValidateImageCommon() 662 } else if (info.dim == SpvDimCube && info.arrayed == 1 && in ValidateImageCommon() 805 if (info.arrayed > 1) { in ValidateTypeImage() 807 << "Invalid Arrayed " << info.arrayed << " (must be 0 or 1)"; in ValidateTypeImage() 811 if ((info.arrayed == 1) && (info.dim != SpvDim1D) && in ValidateTypeImage() 1093 if (info.arrayed == 0) { in ValidateImageTexelPointer() 1095 } else if (info.arrayed == 1) { in ValidateImageTexelPointer() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
| D | validate_image.cpp | 84 uint32_t arrayed = 0; member 114 info->arrayed = inst->word(5); in GetImageTypeInfo() 237 return GetPlaneCoordSize(info) + info.arrayed + (IsProj(opcode) ? 1 : 0); in GetMinCoordSize() 652 if (info.arrayed != 0) { in ValidateImageCommon() 673 } else if (info.dim == SpvDimCube && info.arrayed == 1 && in ValidateImageCommon() 816 if (info.arrayed > 1) { in ValidateTypeImage() 818 << "Invalid Arrayed " << info.arrayed << " (must be 0 or 1)"; in ValidateTypeImage() 822 if ((info.arrayed == 1) && (info.dim != SpvDim1D) && in ValidateTypeImage() 1104 if (info.arrayed == 0) { in ValidateImageTexelPointer() 1106 } else if (info.arrayed == 1) { in ValidateImageTexelPointer() [all …]
|
| /third_party/skia/third_party/externals/spirv-tools/source/val/ |
| D | validate_image.cpp | 84 uint32_t arrayed = 0; member 114 info->arrayed = inst->word(5); in GetImageTypeInfo() 237 return GetPlaneCoordSize(info) + info.arrayed + (IsProj(opcode) ? 1 : 0); in GetMinCoordSize() 652 if (info.arrayed != 0) { in ValidateImageCommon() 673 } else if (info.dim == SpvDimCube && info.arrayed == 1 && in ValidateImageCommon() 816 if (info.arrayed > 1) { in ValidateTypeImage() 818 << "Invalid Arrayed " << info.arrayed << " (must be 0 or 1)"; in ValidateTypeImage() 822 if ((info.arrayed == 1) && (info.dim != SpvDim1D) && in ValidateTypeImage() 1104 if (info.arrayed == 0) { in ValidateImageTexelPointer() 1106 } else if (info.arrayed == 1) { in ValidateImageTexelPointer() [all …]
|
| /third_party/glslang/Test/ |
| D | hlsl.clipdistance-4.geom | 11 triangle in float2 clip0[3] : SV_ClipDistance0, // test input arrayed semantic vars
|
| D | hlsl.array.implicit-size.frag | 8 // Test initializer sizing for arrayed structs
|
| D | spv.140.frag | 44 // test arrayed block
|
| /third_party/glslang/glslang/Include/ |
| D | Types.h | 78 bool arrayed : 1; member 136 bool isArrayed() const { return arrayed; } in isArrayed() 142 arrayed = false; in clear() 166 arrayed = a; 178 arrayed = a; 190 arrayed = a; 219 arrayed == right.arrayed && 293 if (arrayed) in getString()
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| D | graphics_robust_access_pass.cpp | 891 const bool arrayed = image_type->GetSingleWordInOperand(3) == 1; in ClampCoordinateForImageTexelPointer() 893 const auto query_num_components = [dim, arrayed, this]() -> int { in ClampCoordinateForImageTexelPointer() 894 const int arrayness_bonus = arrayed ? 1 : 0; in ClampCoordinateForImageTexelPointer() 969 if (arrayed && (dim == SpvDimCube)) { in ClampCoordinateForImageTexelPointer()
|
| /third_party/skia/third_party/externals/spirv-tools/source/opt/ |
| D | graphics_robust_access_pass.cpp | 891 const bool arrayed = image_type->GetSingleWordInOperand(3) == 1; in ClampCoordinateForImageTexelPointer() 893 const auto query_num_components = [dim, arrayed, this]() -> int { in ClampCoordinateForImageTexelPointer() 894 const int arrayness_bonus = arrayed ? 1 : 0; in ClampCoordinateForImageTexelPointer() 969 if (arrayed && (dim == SpvDimCube)) { in ClampCoordinateForImageTexelPointer()
|
| /third_party/spirv-tools/source/opt/ |
| D | graphics_robust_access_pass.cpp | 890 const bool arrayed = image_type->GetSingleWordInOperand(3) == 1; in ClampCoordinateForImageTexelPointer() 892 const auto query_num_components = [dim, arrayed, this]() -> int { in ClampCoordinateForImageTexelPointer() 893 const int arrayness_bonus = arrayed ? 1 : 0; in ClampCoordinateForImageTexelPointer() 968 if (arrayed && (dim == SpvDimCube)) { in ClampCoordinateForImageTexelPointer()
|
| /third_party/mesa3d/docs/relnotes/ |
| D | 22.0.4.rst | 122 - zink: fix sparse binding for arrayed textures 123 - zink: fix sparse texture depth calcs for arrayed textures
|
| /third_party/glslang/Test/baseResults/ |
| D | array100.frag.out | 4 ERROR: 0:9: 'arrayed type' : not supported for this version or the enabled extensions 5 ERROR: 0:9: 'arrayed type' : not supported for this version or the enabled extensions 7 ERROR: 0:11: 'arrayed constructor' : not supported for this version or the enabled extensions 15 ERROR: 0:31: 'arrayed constructor' : not supported for this version or the enabled extensions
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/source/opt/ |
| D | types.cpp | 139 Image::Image(Type* sampled_type, SpvDim dim, uint32_t depth, uint32_t arrayed, in Image() argument 145 arrayed_(arrayed), in Image()
|