We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0395c commit 5b983fbCopy full SHA for 5b983fb
include/inexor/vulkan-renderer/wrapper/gpu_memory_buffer.hpp
@@ -19,8 +19,8 @@ class GPUMemoryBuffer {
19
VkBuffer m_buffer{VK_NULL_HANDLE};
20
VkDeviceSize m_buffer_size{0};
21
VmaAllocation m_allocation{VK_NULL_HANDLE};
22
- VmaAllocationInfo m_allocation_info;
23
- VmaAllocationCreateInfo m_allocation_ci;
+ VmaAllocationInfo m_allocation_info{};
+ VmaAllocationCreateInfo m_allocation_ci{};
24
25
public:
26
/// @brief Construct the GPU memory buffer without specifying the actual data to fill in, only the memory size.
0 commit comments