Searched refs:getDescriptorType (Results 1 – 11 of 11) sorted by relevance
/external/swiftshader/src/Vulkan/ |
D | VkPipelineLayout.cpp | 44 descriptorSets[i].bindings[j].descriptorType = setLayout->getDescriptorType(j); in PipelineLayout() 118 VkDescriptorType PipelineLayout::getDescriptorType(uint32_t setNumber, uint32_t bindingNumber) const in getDescriptorType() function in vk::PipelineLayout 126 return DescriptorSetLayout::GetDescriptorSize(getDescriptorType(setNumber, bindingNumber)); in getDescriptorSize() 131 return DescriptorSetLayout::IsDescriptorDynamic(getDescriptorType(setNumber, bindingNumber)); in isDescriptorDynamic()
|
D | VkPipelineLayout.hpp | 40 VkDescriptorType getDescriptorType(uint32_t setNumber, uint32_t bindingNumber) const;
|
D | VkDescriptorSet.cpp | 41 VkDescriptorType type = layout->getDescriptorType(i, j); in ParseDescriptors()
|
D | VkDescriptorSetLayout.hpp | 135 VkDescriptorType getDescriptorType(uint32_t bindingNumber) const;
|
D | VkDescriptorSetLayout.cpp | 232 VkDescriptorType DescriptorSetLayout::getDescriptorType(uint32_t bindingNumber) const in getDescriptorType() function in vk::DescriptorSetLayout
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmGraphicsShaderTestUtil.cpp | 2902 const vk::VkDescriptorType resourceType = resource.getDescriptorType(); in createBufferForResource() 2936 getMatchingImageUsageFlags(resource.getDescriptorType()), // VkImageUsageFlags usage; in createImageForResource() 3465 const bool hasImage = (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_STORAGE_IMAGE) || in runAndVerifyDefaultPipeline() 3466 (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE) || in runAndVerifyDefaultPipeline() 3467 (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER); in runAndVerifyDefaultPipeline() 3469 const bool hasSampler = (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE) || in runAndVerifyDefaultPipeline() 3470 (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_SAMPLER) || in runAndVerifyDefaultPipeline() 3471 (resource.getDescriptorType() == VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER); in runAndVerifyDefaultPipeline() 3525 resource.getDescriptorType(), // descriptorType in runAndVerifyDefaultPipeline() 3535 resource.getDescriptorType(), // type in runAndVerifyDefaultPipeline() [all …]
|
D | vktSpvAsmComputeShaderCase.cpp | 515 const VkDescriptorType descType = m_shaderSpec.inputs[inputNdx].getDescriptorType(); in iterate() 742 …DE_ASSERT(m_shaderSpec.outputs[outputNdx].getDescriptorType() == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER… in iterate() 744 descriptorTypes.push_back(m_shaderSpec.outputs[outputNdx].getDescriptorType()); in iterate()
|
D | vktSpvAsmUtils.hpp | 161 virtual vk::VkDescriptorType getDescriptorType () const { return descriptorType; } in getDescriptorType() function in vkt::SpirVAssembly::Resource
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemBufferValidator.hpp | 79 vk::VkDescriptorType getDescriptorType (BufferType bufferType); 217 .addSingleBinding(getDescriptorType(m_bufferType), vk::VK_SHADER_STAGE_COMPUTE_BIT) in validateBuffer() 222 .addType(getDescriptorType(m_bufferType), 1u) in validateBuffer()
|
D | vktProtectedMemBufferValidator.cpp | 182 vk::VkDescriptorType getDescriptorType (BufferType bufferType) in getDescriptorType() function
|
/external/swiftshader/src/Pipeline/ |
D | SpirvShaderImage.cpp | 380 auto descriptorType = routine->pipelineLayout->getDescriptorType(d.DescriptorSet, d.Binding); in GetImageDimensions() 439 …auto descriptorType = state->routine->pipelineLayout->getDescriptorType(d.DescriptorSet, d.Binding… in EmitImageQueryLevels() 471 …auto descriptorType = state->routine->pipelineLayout->getDescriptorType(d.DescriptorSet, d.Binding… in EmitImageQuerySamples()
|