#ifndef __VK_PIPELINE_CACHE_HPP #define __VK_PIPELINE_CACHE_HPP #include "./object.hpp" #include "./fwd.hpp" namespace vk { struct pipeline_cache : public owned { void merge (const device&, const pipeline_cache *first, const pipeline_cache *last); size_t get (const device&, void *dst, size_t len) const; }; } #endif