libcruft-vk/pipeline_cache.cpp

18 lines
408 B
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#ifndef __VK_PIPELINE_CACHE_HPP
#define __VK_PIPELINE_CACHE_HPP
#include "./object.hpp"
#include "./fwd.hpp"
namespace vk {
struct pipeline_cache : public owned<pipeline_cache,device> {
void merge (const device&,
const pipeline_cache *first,
const pipeline_cache *last);
size_t get (const device&, void *dst, size_t len) const;
};
}
#endif