mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-10 02:41:47 +00:00
Forgot to remove const ref
This commit is contained in:
parent
45419be295
commit
dd1df1396c
@ -180,7 +180,7 @@ body = '\n#pragma once\n\n#include <vulkan/vulkan.h>\n\n'
|
||||
body += 'namespace vkb {\n\n'
|
||||
body += 'struct DispatchTable {\n'
|
||||
body += '\tDispatchTable() = default;\n'
|
||||
body += '\tDispatchTable(VkDevice const& device, PFN_vkGetDeviceProcAddr const& procAddr) : device(device) {\n'
|
||||
body += '\tDispatchTable(VkDevice device, PFN_vkGetDeviceProcAddr procAddr) : device(device) {\n'
|
||||
|
||||
proxy_section = ''
|
||||
fp_decl_section = ''
|
||||
|
@ -27,7 +27,7 @@ namespace vkb {
|
||||
|
||||
struct DispatchTable {
|
||||
DispatchTable() = default;
|
||||
DispatchTable(VkDevice const& device, PFN_vkGetDeviceProcAddr const& procAddr) : device(device) {
|
||||
DispatchTable(VkDevice device, PFN_vkGetDeviceProcAddr procAddr) : device(device) {
|
||||
fp_vkGetDeviceQueue = (PFN_vkGetDeviceQueue)procAddr(device, "vkGetDeviceQueue");
|
||||
fp_vkQueueSubmit = (PFN_vkQueueSubmit)procAddr(device, "vkQueueSubmit");
|
||||
fp_vkQueueWaitIdle = (PFN_vkQueueWaitIdle)procAddr(device, "vkQueueWaitIdle");
|
||||
|
Loading…
Reference in New Issue
Block a user