[VK] change bind point from Graphics to Compute since its a compute pipeline

Title is sufficient
This commit is contained in:
wildcard 2025-08-21 18:11:27 +02:00 committed by crueter
parent eb72a358e3
commit 098e27ca24
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ ComputePass::ComputePass(const Device& device_, DescriptorPool& descriptor_pool,
.pDescriptorUpdateEntries = templates.data(),
.templateType = VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET,
.descriptorSetLayout = *descriptor_set_layout,
.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
.pipelineBindPoint = VK_PIPELINE_BIND_POINT_COMPUTE,
.pipelineLayout = *layout,
.set = 0,
});