Skip to content

Commit

Permalink
Minor code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SaschaWillems committed Dec 24, 2023
1 parent b8959f7 commit 3187478
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/debugutils/debugutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ class VulkanExample : public VulkanExampleBase
struct Pipelines {
VkPipeline toonshading;
VkPipeline color;
VkPipeline wireframe = VK_NULL_HANDLE;
VkPipeline wireframe;
VkPipeline postprocess;
} pipelines;
} pipelines{};

VkPipelineLayout pipelineLayout;
VkDescriptorSetLayout descriptorSetLayout;
VkDescriptorSet descriptorSet;
VkPipelineLayout pipelineLayout{ VK_NULL_HANDLE };
VkDescriptorSetLayout descriptorSetLayout{ VK_NULL_HANDLE };
VkDescriptorSet descriptorSet{ VK_NULL_HANDLE };

// Framebuffer for offscreen rendering
struct FrameBufferAttachment {
Expand All @@ -63,7 +63,7 @@ class VulkanExample : public VulkanExampleBase
VkRenderPass renderPass;
VkSampler sampler;
VkDescriptorImageInfo descriptor;
} offscreenPass;
} offscreenPass{};

// Function pointers for the VK_EXT_debug_utils_extension

Expand Down

0 comments on commit 3187478

Please sign in to comment.