Skip to content

Commit

Permalink
vk: fix uninitialized param (#8253)
Browse files Browse the repository at this point in the history
  • Loading branch information
poweifeng committed Nov 6, 2024
1 parent 483ef2f commit e726964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class VulkanDescriptorSetManager {
struct {
VkPipelineLayout pipelineLayout = VK_NULL_HANDLE;
DescriptorSetMask setMask;
DescriptorSetArray boundSets;
DescriptorSetArray boundSets = {};
} mLastBoundInfo;
};

Expand Down

0 comments on commit e726964

Please sign in to comment.