18 lines
408 B
C++
18 lines
408 B
C++
|
#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
|