SimpleGL  1.1.0
A framework for platform independent rendering
render_pass.hpp
Go to the documentation of this file.
1 
8 #ifndef RENDER_PASS_HPP
9 #define RENDER_PASS_HPP
10 
11 #include <SimpleGL_vk/SimpleGL_vk_Export.h>
12 
13 #include <vulkan/vulkan.h>
14 
15 namespace sgl {
16 
22  class SIMPLEGL_VK_EXPORT RenderPass {
23 
24  private:
26  VkRenderPass handle;
27 
28  public:
30  RenderPass(void);
31 
33  ~RenderPass(void);
34 
40  VkRenderPass getHandle();
41  };
42 }
43 
44 #endif /* RENDER_PASS_HPP */
Generic namespace for the SimpleGL framework.
Definition: application.hpp:18
This class wraps a Vulkan render pass.
Definition: render_pass.hpp:22