mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-02 06:46:36 -04:00
Merge branch 'fix/vulkan-descriptor-wrong-index' into 'master'
vulkan: fix wrong descriptor image info index See merge request pipewire/pipewire!2802
This commit is contained in:
commit
42bb2acf00
1 changed files with 1 additions and 1 deletions
|
|
@ -147,7 +147,7 @@ static int updateDescriptors(struct vulkan_compute_state *s)
|
||||||
.descriptorType = i == 0 ?
|
.descriptorType = i == 0 ?
|
||||||
VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :
|
VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :
|
||||||
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
|
||||||
.pImageInfo = &descriptorImageInfo[i],
|
.pImageInfo = &descriptorImageInfo[descriptorSetLen],
|
||||||
};
|
};
|
||||||
descriptorSetLen++;
|
descriptorSetLen++;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue