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_pipeline_cache_create(VkDevice device, 23 VkAllocationCallbacks const * allocator, 24 char const * const name, 25 VkPipelineCache * pipeline_cache); 26 27 void 28 vk_pipeline_cache_destroy(VkDevice device, 29 VkAllocationCallbacks const * allocator, 30 char const * const name, 31 VkPipelineCache pipeline_cache); 32 33 // 34 // 35 // 36