mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Merge pull request #10970 from stenzek/vulkan-create-buffer
(Vulkan) Fix incorrect structure type in vulkan_create_buffer
This commit is contained in:
commit
c4e54d13d9
@ -1260,7 +1260,7 @@ struct vk_buffer vulkan_create_buffer(
|
|||||||
VkBufferCreateInfo info;
|
VkBufferCreateInfo info;
|
||||||
VkMemoryAllocateInfo alloc;
|
VkMemoryAllocateInfo alloc;
|
||||||
|
|
||||||
info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO;
|
info.sType = VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO;
|
||||||
info.pNext = NULL;
|
info.pNext = NULL;
|
||||||
info.flags = 0;
|
info.flags = 0;
|
||||||
info.size = size;
|
info.size = size;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user