Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03b6fe1b authored by Jesse Hall's avatar Jesse Hall
Browse files

vulkan: Update from version 0.186.0 to 0.188.0

Change-Id: Ida08d51f4e892202b594072d1e765ba5c55444db
(cherry picked from commit 2ca0449bdeecd0257c7473f663896b00d0082def)
parent a3a7a1d3
Loading
Loading
Loading
Loading
+197 −117

File changed.

Preview size limit exceeded, changes collapsed.

+250 −171

File changed.

Preview size limit exceeded, changes collapsed.

+128 −128

File changed.

Preview size limit exceeded, changes collapsed.

+104 −45

File changed.

Preview size limit exceeded, changes collapsed.

+4 −3
Original line number Diff line number Diff line
@@ -216,6 +216,7 @@ VkResult EnumerateInstanceExtensionProperties(
VkResult EnumerateInstanceLayerProperties(uint32_t* count,
                                          VkLayerProperties* properties);
VkResult CreateInstance(const VkInstanceCreateInfo* create_info,
                        const VkAllocCallbacks* pAllocator,
                        VkInstance* instance);
PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* name);
PFN_vkVoidFunction GetDeviceProcAddr(VkDevice drv_device, const char* name);
@@ -226,17 +227,17 @@ void GetDeviceQueue(VkDevice drv_device,
VkResult AllocCommandBuffers(VkDevice device,
                             const VkCmdBufferAllocInfo* alloc_info,
                             VkCmdBuffer* cmdbuffers);
VkResult DestroyDevice(VkDevice drv_device);
VkResult DestroyDevice(VkDevice drv_device, const VkAllocCallbacks* pAllocator);

void* AllocMem(VkInstance instance,
               size_t size,
               size_t align,
               VkSystemAllocType type);
               VkSystemAllocScope scope);
void FreeMem(VkInstance instance, void* ptr);
void* AllocMem(VkDevice device,
               size_t size,
               size_t align,
               VkSystemAllocType type);
               VkSystemAllocScope scope);
void FreeMem(VkDevice device, void* ptr);
const DeviceVtbl& GetDriverVtbl(VkDevice device);
const DeviceVtbl& GetDriverVtbl(VkQueue queue);
Loading