qxLib
vbo.h
Go to the documentation of this file.
1 /**
2 
3  @file vbo.h
4  @author Khrapov
5  @date 19.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/gl/buffer_base.h>
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class base_vbo
19  @brief Base VBO class
20  @details ~
21  @author Khrapov
22  @date 10.07.2020
23 
24 **/
25 class base_vbo : public buffer_base
26 {
27 public:
28  base_vbo() = default;
29 
30 protected:
31  QX_DECL_BUFFER_BASE
32 };
33 
34 using vbo = base_vbo;
35 
36 } // namespace qx
37 
38 #include <qx/gl/vbo.inl>
Base VBO class.
Definition: vbo.h:26
Base OpenGL buffer object class.
Definition: buffer_base.h:27