fix compiler warning "-Winconsistent-missing-override"

This commit is contained in:
scribam 2018-06-13 18:41:28 +02:00
parent 968f3995ff
commit 6f3a63df94
2 changed files with 6 additions and 6 deletions

View file

@ -247,7 +247,7 @@ namespace vk
vmaUnmapMemory(m_allocator, static_cast<VmaAllocation>(mem_handle)); vmaUnmapMemory(m_allocator, static_cast<VmaAllocation>(mem_handle));
} }
VkDeviceMemory get_vk_device_memory(mem_handle_t mem_handle) VkDeviceMemory get_vk_device_memory(mem_handle_t mem_handle) override
{ {
VmaAllocationInfo alloc_info; VmaAllocationInfo alloc_info;
@ -255,7 +255,7 @@ namespace vk
return alloc_info.deviceMemory; return alloc_info.deviceMemory;
} }
u64 get_vk_device_memory_offset(mem_handle_t mem_handle) u64 get_vk_device_memory_offset(mem_handle_t mem_handle) override
{ {
VmaAllocationInfo alloc_info; VmaAllocationInfo alloc_info;
@ -311,7 +311,7 @@ namespace vk
return (VkDeviceMemory)mem_handle; return (VkDeviceMemory)mem_handle;
} }
u64 get_vk_device_memory_offset(mem_handle_t /*mem_handle*/) u64 get_vk_device_memory_offset(mem_handle_t /*mem_handle*/) override
{ {
return 0; return 0;
} }
@ -1476,7 +1476,7 @@ public:
swapchain_images[index].second->do_dma_transfer(cmd); swapchain_images[index].second->do_dma_transfer(cmd);
} }
VkImage& get_image(u32 index) VkImage& get_image(u32 index) override
{ {
return (VkImage&)(*swapchain_images[index].second.get()); return (VkImage&)(*swapchain_images[index].second.get());
} }
@ -1720,7 +1720,7 @@ public:
return queuePresentKHR(vk_present_queue, &present); return queuePresentKHR(vk_present_queue, &present);
} }
VkImage& get_image(u32 index) VkImage& get_image(u32 index) override
{ {
return (VkImage&)swapchain_images[index]; return (VkImage&)swapchain_images[index];
} }

View file

@ -677,7 +677,7 @@ namespace vk
m_ubo.unmap(); m_ubo.unmap();
} }
void emit_geometry(vk::command_buffer &cmd) void emit_geometry(vk::command_buffer &cmd) override
{ {
//Split into groups of 4 //Split into groups of 4
u32 first = 0; u32 first = 0;