HomeSort by relevance Sort by last modified time
    Searched refs:arrayed (Results 1 - 15 of 15) sorted by null

  /external/deqp-deps/glslang/glslang/MachineIndependent/
reflection.cpp 394 case false: return sampler.arrayed ? GL_SAMPLER_1D_ARRAY : GL_SAMPLER_1D;
395 case true: return sampler.arrayed ? GL_SAMPLER_1D_ARRAY_SHADOW : GL_SAMPLER_1D_SHADOW;
401 case false: return sampler.arrayed ? GL_SAMPLER_2D_ARRAY : GL_SAMPLER_2D;
402 case true: return sampler.arrayed ? GL_SAMPLER_2D_ARRAY_SHADOW : GL_SAMPLER_2D_SHADOW;
404 case true: return sampler.arrayed ? GL_SAMPLER_2D_MULTISAMPLE_ARRAY : GL_SAMPLER_2D_MULTISAMPLE;
410 case false: return sampler.arrayed ? GL_SAMPLER_CUBE_MAP_ARRAY : GL_SAMPLER_CUBE;
411 case true: return sampler.arrayed ? GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW : GL_SAMPLER_CUBE_SHADOW;
423 case false: return sampler.arrayed ? GL_FLOAT16_SAMPLER_1D_ARRAY_AMD : GL_FLOAT16_SAMPLER_1D_AMD;
424 case true: return sampler.arrayed ? GL_FLOAT16_SAMPLER_1D_ARRAY_SHADOW_AMD : GL_FLOAT16_SAMPLER_1D_SHADOW_AMD;
430 case false: return sampler.arrayed ? GL_FLOAT16_SAMPLER_2D_ARRAY_AMD : GL_FLOAT16_SAMPLER_2D_AMD
    [all...]
Initialize.cpp     [all...]
glslang_tab.cpp     [all...]
SymbolTable.cpp 96 if (sampler.arrayed)
ParseHelper.cpp     [all...]
  /external/deqp-deps/glslang/glslang/Include/
Types.h 77 bool arrayed : 1; member in struct:glslang::TSampler
104 bool isArrayed() const { return arrayed; }
112 arrayed = false;
131 arrayed = a;
143 arrayed = a;
155 arrayed = a;
182 arrayed == right.arrayed &&
248 if (arrayed)
696 // True if this type of IO is supposed to be arrayed with extra level for per-vertex dat
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/val/
validate_image.cpp 76 uint32_t arrayed = 0; member in struct:spvtools::val::__anon20337::ImageTypeInfo
106 info->arrayed = inst->word(5);
197 // Returns minimal number of coordinates based on image dim, arrayed and whether
207 return GetPlaneCoordSize(info) + info.arrayed + (IsProj(opcode) ? 1 : 0);
563 if (info.arrayed != 0) {
565 << "Image Image 'arrayed' parameter to be 0";
584 } else if (info.dim == SpvDimCube && info.arrayed == 1 &&
709 if (info.arrayed > 1) {
711 << "Invalid Arrayed " << info.arrayed << " (must be 0 or 1)"
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_image.cpp 76 uint32_t arrayed = 0; member in struct:spvtools::val::__anon41271::ImageTypeInfo
106 info->arrayed = inst->word(5);
197 // Returns minimal number of coordinates based on image dim, arrayed and whether
207 return GetPlaneCoordSize(info) + info.arrayed + (IsProj(opcode) ? 1 : 0);
563 if (info.arrayed != 0) {
565 << "Image Image 'arrayed' parameter to be 0";
584 } else if (info.dim == SpvDimCube && info.arrayed == 1 &&
709 if (info.arrayed > 1) {
711 << "Invalid Arrayed " << info.arrayed << " (must be 0 or 1)"
    [all...]
  /external/vulkan-validation-layers/layers/
shader_validation.cpp 1846 auto arrayed = type.word(5); local
    [all...]
  /external/deqp-deps/glslang/SPIRV/
SpvBuilder.cpp 460 Id Builder::makeImageType(Id sampledType, Dim dim, bool depth, bool arrayed, bool ms, unsigned sampled, ImageFormat format)
471 type->getImmediateOperand(3) == (arrayed ? 1u : 0u) &&
483 type->addImmediateOperand(arrayed ? 1 : 0);
507 if (arrayed) {
533 if (arrayed)
    [all...]
SpvBuilder.h 155 Id makeImageType(Id sampledType, Dim, bool depth, bool arrayed, bool ms, unsigned sampled, ImageFormat format);
    [all...]
GlslangToSpv.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_mipmap_tree.c 174 const bool arrayed = mt->surf.logical_level0_px.array_len > 1 || local
177 if (arrayed) {
196 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
201 * Non-MultiSampler Render Target Restriction). Mip-mapped and arrayed
205 if (devinfo->gen < 8 && (mip_mapped || arrayed))
    [all...]
  /external/deqp/modules/glshared/
glsDrawTest.cpp 2846 const bool arrayed = methodInfo.first; local
    [all...]
  /external/deqp-deps/glslang/hlsl/
hlslParseHelper.cpp     [all...]

Completed in 446 milliseconds