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

  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.cpp 206 , m_imageCount (imageCount)
311 m_images.resize(m_imageCount);
312 m_imageAllocs.resize(m_imageCount);
313 m_imageViews.resize(m_imageCount);
315 for (int imgNdx = 0; imgNdx < m_imageCount; ++imgNdx)
348 descriptorPoolBuilder.addType(m_samplingType, m_imageCount);
350 m_samplingType == VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE ? m_imageCount + 1u : m_imageCount);
355 setLayoutBuilder.addArrayBinding(m_samplingType, m_imageCount, VK_SHADER_STAGE_FRAGMENT_BIT);
370 std::vector<VkDescriptorImageInfo> descriptorImageInfo(m_imageCount);
    [all...]
vktPipelineImageTests.cpp 82 int m_imageCount;
103 , m_imageCount (imageCount)
162 << "layout(set = 0, binding = 1) uniform highp " << getGlslTextureType(format, m_imageViewType) << " " << getGlslTextureDecl(m_imageCount) << ";\n";
167 << "layout(set = 0, binding = 0) uniform highp " << getGlslSamplerType(format, m_imageViewType) << " " << getGlslSamplerDecl(m_imageCount) << ";\n";
170 << "layout(location = 0) out highp vec4 " << getGlslFragColorDecl(m_imageCount) << ";\n"
173 if (m_imageCount > 1)
175 << " for (uint i = 0; i < " << m_imageCount << "; ++i)\n"
176 << " fragColors[i] = (texture(" << getGlslSampler(format, m_imageViewType, m_samplingType, m_imageCount) << ", vtxTexCoords." << texCoordSwizzle << std::scientific << ") * vec4" << lookupScale << ") + vec4" << lookupBias << "; \n";
179 << " fragColor = (texture(" << getGlslSampler(format, m_imageViewType, m_samplingType, m_imageCount) << ", vtxTexCoords." << texCoordSwizzle << std::scientific << ") * vec4" << lookupScale << ") + vec4" << lookupBias << "; \n";
192 if (m_imageCount > 1 && features.shaderSampledImageArrayDynamicIndexing == VK_FALSE
    [all...]
vktPipelineImageSamplingInstance.hpp 87 const int m_imageCount;

Completed in 186 milliseconds