Home
last modified time | relevance | path

Searched refs:arrayed (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/glslang/glslang/MachineIndependent/
Dreflection.cpp707 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 …]
DInitialize.cpp5776 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/
DSpirvUtils.cpp44 wgpu::TextureViewDimension SpirvDimToTextureViewDimension(spv::Dim dim, bool arrayed) { in SpirvDimToTextureViewDimension() argument
49 if (arrayed) { in SpirvDimToTextureViewDimension()
57 if (arrayed) { in SpirvDimToTextureViewDimension()
DSpirvUtils.h35 wgpu::TextureViewDimension SpirvDimToTextureViewDimension(spv::Dim dim, bool arrayed);
DShaderModuleGL.cpp116 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/
Denum_converter.cc103 ast::TextureDimension EnumConverter::ToDim(SpvDim dim, bool arrayed) { in ToDim() argument
104 if (arrayed) { in ToDim()
Denum_converter.h61 ast::TextureDimension ToDim(SpvDim dim, bool arrayed);
Denum_converter_test.cc244 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/
DARB_arrays_of_arrays.txt222 "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
DARB_shader_image_size.txt135 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/
DARB_arrays_of_arrays.txt212 "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
DARB_shader_image_size.txt125 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/
Dvalidate_image.cpp79 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/
Dvalidate_image.cpp84 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/
Dvalidate_image.cpp84 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/
Dhlsl.clipdistance-4.geom11 triangle in float2 clip0[3] : SV_ClipDistance0, // test input arrayed semantic vars
Dhlsl.array.implicit-size.frag8 // Test initializer sizing for arrayed structs
Dspv.140.frag44 // test arrayed block
/third_party/glslang/glslang/Include/
DTypes.h78 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/
Dgraphics_robust_access_pass.cpp891 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/
Dgraphics_robust_access_pass.cpp891 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/
Dgraphics_robust_access_pass.cpp890 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/
D22.0.4.rst122 - zink: fix sparse binding for arrayed textures
123 - zink: fix sparse texture depth calcs for arrayed textures
/third_party/glslang/Test/baseResults/
Darray100.frag.out4 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/
Dtypes.cpp139 Image::Image(Type* sampled_type, SpvDim dim, uint32_t depth, uint32_t arrayed, in Image() argument
145 arrayed_(arrayed), in Image()

1234