Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.h798 class PipelineLayoutDesc final
801 PipelineLayoutDesc();
802 ~PipelineLayoutDesc();
803 PipelineLayoutDesc(const PipelineLayoutDesc &other);
804 PipelineLayoutDesc &operator=(const PipelineLayoutDesc &rhs);
807 bool operator==(const PipelineLayoutDesc &other) const;
829 static_assert(sizeof(PipelineLayoutDesc) == (sizeof(DescriptorSetArray<DescriptorSetLayoutDesc>) +
1372 struct hash<rx::vk::PipelineLayoutDesc>
1374 size_t operator()(const rx::vk::PipelineLayoutDesc &key) const { return key.hash(); }
1653 const vk::PipelineLayoutDesc &desc,
[all …]
Dvk_cache_utils.cpp2859 PipelineLayoutDesc::PipelineLayoutDesc() : mDescriptorSetLayouts{}, mPushConstantRanges{} {} in PipelineLayoutDesc() function in rx::vk::PipelineLayoutDesc
2861 PipelineLayoutDesc::~PipelineLayoutDesc() = default;
2863 PipelineLayoutDesc::PipelineLayoutDesc(const PipelineLayoutDesc &other) = default;
2865 PipelineLayoutDesc &PipelineLayoutDesc::operator=(const PipelineLayoutDesc &rhs) in operator =()
2872 size_t PipelineLayoutDesc::hash() const in hash()
2877 bool PipelineLayoutDesc::operator==(const PipelineLayoutDesc &other) const in operator ==()
2879 return memcmp(this, &other, sizeof(PipelineLayoutDesc)) == 0; in operator ==()
2882 void PipelineLayoutDesc::updateDescriptorSetLayout(DescriptorSetIndex setIndex, in updateDescriptorSetLayout()
2888 void PipelineLayoutDesc::updatePushConstantRange(gl::ShaderType shaderType, in updatePushConstantRange()
2899 const PushConstantRangeArray<PackedPushConstantRange> &PipelineLayoutDesc::getPushConstantRanges() in getPushConstantRanges()
[all …]
DProgramExecutableVk.cpp1103 vk::PipelineLayoutDesc pipelineLayoutDesc; in createPipelineLayout()
DUtilsVk.cpp1157 vk::PipelineLayoutDesc pipelineLayoutDesc; in ensureResourcesInitialized()