libcruft-vk/pipeline.hpp
2016-02-24 11:11:41 +11:00

14 lines
186 B
C++

#ifndef __VK_PIPELINE_HPP
#define __VK_PIPELINE_HPP
#include "./object.hpp"
#include "./fwd.hpp"
namespace vk {
struct pipeline : public owned<pipeline,device> {
};
}
#endif