libcruft-vk/render_pass.hpp

13 lines
185 B
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#ifndef __VK_RENDER_PASS_HPP
#define __VK_RENDER_PASS_HPP
#include "./object.hpp"
namespace vk {
struct render_pass : public owned<render_pass,device> {
};
}
#endif