mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
fix(docs): instance not optional in quick start
This commit is contained in:
parent
755fd47121
commit
1e11595592
@ -146,7 +146,7 @@ them before every `#include` of this library.
|
|||||||
|
|
||||||
At program startup:
|
At program startup:
|
||||||
|
|
||||||
-# Initialize Vulkan to have `VkPhysicalDevice` and `VkDevice` object.
|
-# Initialize Vulkan to have `VkPhysicalDevice`, `VkDevice` and `VkInstance` object.
|
||||||
-# Fill VmaAllocatorCreateInfo structure and create #VmaAllocator object by
|
-# Fill VmaAllocatorCreateInfo structure and create #VmaAllocator object by
|
||||||
calling vmaCreateAllocator().
|
calling vmaCreateAllocator().
|
||||||
|
|
||||||
@ -154,6 +154,7 @@ At program startup:
|
|||||||
VmaAllocatorCreateInfo allocatorInfo = {};
|
VmaAllocatorCreateInfo allocatorInfo = {};
|
||||||
allocatorInfo.physicalDevice = physicalDevice;
|
allocatorInfo.physicalDevice = physicalDevice;
|
||||||
allocatorInfo.device = device;
|
allocatorInfo.device = device;
|
||||||
|
allocatorInfo.instance = instance;
|
||||||
|
|
||||||
VmaAllocator allocator;
|
VmaAllocator allocator;
|
||||||
vmaCreateAllocator(&allocatorInfo, &allocator);
|
vmaCreateAllocator(&allocatorInfo, &allocator);
|
||||||
|
Loading…
Reference in New Issue
Block a user