1 /* 2 * Copyright 2018 Google Inc. 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 * 7 */ 8 9 #pragma once 10 11 // 12 // 13 // 14 15 #include <vulkan/vulkan.h> 16 17 // 18 // 19 // 20 21 void * 22 vk_host_alloc(VkAllocationCallbacks const * allocator, size_t size); 23 24 void * 25 vk_host_realloc(VkAllocationCallbacks const * allocator, void * ptr, size_t new_size); 26 27 void 28 vk_host_free(VkAllocationCallbacks const * allocator, void * ptr); 29 30 // 31 // 32 // 33