qxLib
ebo.h
Go to the documentation of this file.
1 /**
2 
3  @file ebo.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_ebo
19  @brief Base EBO class
20  @details ~
21  @author Khrapov
22  @date 10.07.2020
23 
24 **/
25 class base_ebo : public buffer_base
26 {
27 protected:
28  QX_DECL_BUFFER_BASE
29 };
30 
31 using ebo = base_ebo;
32 
33 } // namespace qx
34 
35 #include <qx/gl/ebo.inl>
Base EBO class.
Definition: ebo.h:26
Base OpenGL buffer object class.
Definition: buffer_base.h:27