qxLib
texture.h
Go to the documentation of this file.
1 /**
2 
3  @file texture.h
4  @author Khrapov
5  @date 23.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <qx/gl/ibuffer.h>
12 #include <qx/typedefs.h>
13 #include <memory>
14 
15 namespace qx
16 {
17 
18 /**
19 
20  @class base_texture
21  @brief Base texture class
22  @details ~
23  @author Khrapov
24  @date 10.07.2020
25 
26 **/
27 class base_texture : public IBuffer
28 {
29 public:
30  base_texture() = default;
31  virtual ~base_texture();
32 
33  QX_DECL_IBUFFER
34 
35  /**
36  @brief Get texture target
37  @retval - texture target
38  **/
39  GLenum GetTarget() const;
40 
41  /**
42  @brief Get texture internal format
43  @retval - texture internal format
44  **/
45  GLenum GetInternalFormat() const;
46 
47  /**
48  @brief Get texture width
49  @retval - texture width
50  **/
51  GLsizei GetWidth() const;
52 
53  /**
54  @brief Get texture height
55  @retval - texture height
56  **/
57  GLsizei GetHeight() const;
58 
59  /**
60  @brief Set texture target
61  @param eTarget - target texture
62  **/
63  void SetTarget(GLenum eTarget);
64 
65  /**
66  @brief Specify a two-dimensional texture image
67  @details https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml
68  @param nLevel - level-of-detail number.
69  @param eInternalFormat - number of color components in the texture
70  @param nWidth - width of the texture image
71  @param nHeight - height of the texture image
72  @param eFormat - format of the pixel data
73  @param eType - data type of the pixel data
74  @param pData - pointer to the image data in memory
75  @param eTarget - non-default target. -1 value will use m_eTextureTarget
76  **/
77  void Specify2DTexImage(
78  GLint nLevel,
79  GLenum eInternalFormat,
80  GLsizei nWidth,
81  GLsizei nHeight,
82  GLenum eFormat,
83  GLenum eType,
84  const void* pData = nullptr,
85  GLenum eTarget = -1);
86 
87  /**
88  @brief Establish parameters of a multisample texture's image
89  @param nSamples - level-of-detail number.
90  @param eInternalFormat - number of color components in the texture
91  @param nWidth - width of the texture image
92  @param nHeight - height of the texture image
93  @param bFixedSampleLocations - specifies whether the image will use identical
94  sample locations and the same number of samples
95  for all texels in the image, and the sample
96  locations will not depend on the internal
97  format or size of the image
98  **/
100  GLsizei nSamples,
101  GLenum eInternalFormat,
102  GLsizei nWidth,
103  GLsizei nHeight,
104  GLboolean bFixedSampleLocations);
105 
106  /**
107  @brief Generate mipmap for texture
108  **/
109  void GenerateMipmap();
110 
111  /**
112  @brief Set texture parameter
113  @param eName - the symbolic name of a single-valued texture parameter
114  @param value - the value of eName
115  **/
116  void SetParameter(GLenum eName, GLfloat value);
117 
118  /**
119  @brief Set texture parameter
120  @param eName - the symbolic name of a single-valued texture parameter
121  @param value - the value of eName
122  **/
123  void SetParameter(GLenum eName, GLint value);
124 
125  /**
126  @brief Set texture parameter
127  @param eName - the symbolic name of a single-valued texture parameter
128  @param value - the value of eName
129  **/
130  void SetParameter(GLenum eName, const GLfloat* value);
131 
132  /**
133  @brief Set texture parameter
134  @param eName - the symbolic name of a single-valued texture parameter
135  @param value - the value of eName
136  **/
137  void SetParameter(GLenum eName, const GLint* value);
138 
139  /**
140  @brief Set texture parameter
141  @param eName - the symbolic name of a single-valued texture parameter
142  @param value - the value of eName
143  **/
144  void SetParameter(GLenum eName, const GLuint* value);
145 
146 private:
147  GLuint m_nTexture = std::numeric_limits<GLuint>::max();
148  GLenum m_eTextureTarget = GL_TEXTURE_2D;
149  GLenum m_eInternalFormat = GL_RGBA;
150  GLsizei m_nWidth = 0;
151  GLsizei m_nHeight = 0;
152 };
153 
154 using texture = base_texture;
155 
156 } // namespace qx
157 
158 
159 #include <qx/gl/texture.inl>
OpenGL buffer interface.
Definition: ibuffer.h:26
Base texture class.
Definition: texture.h:28
QX_DECL_IBUFFER GLenum GetTarget() const
Get texture target.
Definition: texture.inl:48
void SetParameter(GLenum eName, GLfloat value)
Set texture parameter.
Definition: texture.inl:118
GLsizei GetHeight() const
Get texture height.
Definition: texture.inl:63
GLsizei GetWidth() const
Get texture width.
Definition: texture.inl:58
void Specify2DTexImage(GLint nLevel, GLenum eInternalFormat, GLsizei nWidth, GLsizei nHeight, GLenum eFormat, GLenum eType, const void *pData=nullptr, GLenum eTarget=-1)
Specify a two-dimensional texture image.
Definition: texture.inl:73
void Specify2DMultisample(GLsizei nSamples, GLenum eInternalFormat, GLsizei nWidth, GLsizei nHeight, GLboolean bFixedSampleLocations)
Establish parameters of a multisample texture's image.
Definition: texture.inl:99
void GenerateMipmap()
Generate mipmap for texture.
Definition: texture.inl:113
GLenum GetInternalFormat() const
Get texture internal format.
Definition: texture.inl:53
void SetTarget(GLenum eTarget)
Set texture target.
Definition: texture.inl:68