qxLib
ibuffer.h
Go to the documentation of this file.
1 /**
2 
3  @file ibuffer.h
4  @author Khrapov
5  @date 22.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <glew.h>
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class IBuffer
19  @brief OpenGL buffer interface
20  @details ~
21  @author Khrapov
22  @date 22.01.2020
23 
24 **/
25 class IBuffer
26 {
27 public:
28  virtual ~IBuffer() = default;
29 
30  /**
31  @brief Generate buffer object
32  **/
33  virtual void Generate() = 0;
34 
35  /**
36  @brief Bind a named buffer object
37  **/
38  virtual void Bind() const = 0;
39 
40  /**
41  @brief Unbind a named buffer object
42  **/
43  virtual void Unbind() const = 0;
44 
45  /**
46  @brief Get the object's name - the reference to the object
47  @retval - the object's name
48  **/
49  virtual GLuint GetBufferName() const = 0;
50 
51  /**
52  @brief Is this buffer generated
53  @retval - true is generated
54  **/
55  virtual bool IsGenerated() const = 0;
56 };
57 
58 #define QX_DECL_IBUFFER \
59  virtual void Generate() override; \
60  virtual void Bind() const override; \
61  virtual void Unbind() const override; \
62  virtual GLuint GetBufferName() const override; \
63  virtual bool IsGenerated() const override;
64 
65 } // namespace qx
OpenGL buffer interface.
Definition: ibuffer.h:26
virtual void Bind() const =0
Bind a named buffer object.
virtual void Generate()=0
Generate buffer object.
virtual bool IsGenerated() const =0
Is this buffer generated.
virtual GLuint GetBufferName() const =0
Get the object's name - the reference to the object.
virtual void Unbind() const =0
Unbind a named buffer object.