Home
last modified time | relevance | path

Searched refs:PipelineLayoutDesc (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.h799 class PipelineLayoutDesc final
802 PipelineLayoutDesc();
803 ~PipelineLayoutDesc();
804 PipelineLayoutDesc(const PipelineLayoutDesc &other);
805 PipelineLayoutDesc &operator=(const PipelineLayoutDesc &rhs);
808 bool operator==(const PipelineLayoutDesc &other) const;
830 static_assert(sizeof(PipelineLayoutDesc) == (sizeof(DescriptorSetArray<DescriptorSetLayoutDesc>) +
1338 struct hash<rx::vk::PipelineLayoutDesc>
1340 size_t operator()(const rx::vk::PipelineLayoutDesc &key) const { return key.hash(); }
1619 const vk::PipelineLayoutDesc &desc,
[all …]
Dvk_cache_utils.cpp2794 PipelineLayoutDesc::PipelineLayoutDesc() : mDescriptorSetLayouts{}, mPushConstantRanges{} {} in PipelineLayoutDesc() function in rx::vk::PipelineLayoutDesc
2796 PipelineLayoutDesc::~PipelineLayoutDesc() = default;
2798 PipelineLayoutDesc::PipelineLayoutDesc(const PipelineLayoutDesc &other) = default;
2800 PipelineLayoutDesc &PipelineLayoutDesc::operator=(const PipelineLayoutDesc &rhs) in operator =()
2807 size_t PipelineLayoutDesc::hash() const in hash()
2812 bool PipelineLayoutDesc::operator==(const PipelineLayoutDesc &other) const in operator ==()
2814 return memcmp(this, &other, sizeof(PipelineLayoutDesc)) == 0; in operator ==()
2817 void PipelineLayoutDesc::updateDescriptorSetLayout(DescriptorSetIndex setIndex, in updateDescriptorSetLayout()
2823 void PipelineLayoutDesc::updatePushConstantRange(gl::ShaderType shaderType, in updatePushConstantRange()
2834 const PushConstantRangeArray<PackedPushConstantRange> &PipelineLayoutDesc::getPushConstantRanges() in getPushConstantRanges()
[all …]
DProgramExecutableVk.cpp1071 vk::PipelineLayoutDesc pipelineLayoutDesc; in createPipelineLayout()
DUtilsVk.cpp1167 vk::PipelineLayoutDesc pipelineLayoutDesc; in ensureResourcesInitialized()