qxLib
texture.inl
Go to the documentation of this file.
1 /**
2 
3  @file texture.inl
4  @author Khrapov
5  @date 23.01.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 
10 namespace qx
11 {
12 
13 inline base_texture::~base_texture()
14 {
15  if (m_nTexture != std::numeric_limits<GLuint>::max())
16  {
17  glDeleteTextures(1, &m_nTexture);
18  m_nTexture = std::numeric_limits<GLuint>::max();
19  }
20 }
21 
22 inline void base_texture::Generate()
23 {
24  if (m_nTexture == std::numeric_limits<GLuint>::max())
25  glGenTextures(1, &m_nTexture);
26 }
27 
28 inline void base_texture::Bind() const
29 {
30  glBindTexture(m_eTextureTarget, m_nTexture);
31 }
32 
33 inline void base_texture::Unbind() const
34 {
35  glBindTexture(m_eTextureTarget, 0);
36 }
37 
38 inline GLuint base_texture::GetBufferName() const
39 {
40  return m_nTexture;
41 }
42 
43 inline bool base_texture::IsGenerated() const
44 {
45  return m_nTexture != std::numeric_limits<GLuint>::max();
46 };
47 
48 inline GLenum base_texture::GetTarget() const
49 {
50  return m_eTextureTarget;
51 }
52 
53 inline GLenum base_texture::GetInternalFormat() const
54 {
55  return m_eInternalFormat;
56 }
57 
58 inline GLsizei base_texture::GetWidth() const
59 {
60  return m_nWidth;
61 }
62 
63 inline GLsizei base_texture::GetHeight() const
64 {
65  return m_nHeight;
66 }
67 
68 inline void base_texture::SetTarget(GLenum eTarget)
69 {
70  m_eTextureTarget = eTarget;
71 }
72 
74  GLint nLevel,
75  GLenum eInternalFormat,
76  GLsizei nWidth,
77  GLsizei nHeight,
78  GLenum eFormat,
79  GLenum eType,
80  const void* pData,
81  GLenum eTarget)
82 {
83  glTexImage2D(
84  eTarget != -1 ? eTarget : m_eTextureTarget,
85  nLevel,
86  eInternalFormat,
87  nWidth,
88  nHeight,
89  0,
90  eFormat,
91  eType,
92  pData);
93 
94  m_nWidth = nWidth;
95  m_nHeight = nHeight;
96  m_eInternalFormat = eInternalFormat;
97 }
98 
100  GLsizei nSamples,
101  GLenum eInternalFormat,
102  GLsizei nWidth,
103  GLsizei nHeight,
104  GLboolean bFixedSampleLocations)
105 {
106  glTexImage2DMultisample(m_eTextureTarget, nSamples, eInternalFormat, nWidth, nHeight, bFixedSampleLocations);
107 
108  m_nWidth = nWidth;
109  m_nHeight = nHeight;
110  m_eInternalFormat = eInternalFormat;
111 }
112 
114 {
115  glGenerateMipmap(m_eTextureTarget);
116 }
117 
118 inline void base_texture::SetParameter(GLenum eName, GLfloat value)
119 {
120  glTextureParameterf(m_nTexture, eName, value);
121 }
122 
123 inline void base_texture::SetParameter(GLenum eName, GLint value)
124 {
125  glTextureParameteri(m_nTexture, eName, value);
126 }
127 
128 inline void base_texture::SetParameter(GLenum eName, const GLfloat* value)
129 {
130  glTextureParameterfv(m_nTexture, eName, value);
131 }
132 
133 inline void base_texture::SetParameter(GLenum eName, const GLint* value)
134 {
135  glTextureParameterIiv(m_nTexture, eName, value);
136 }
137 
138 inline void base_texture::SetParameter(GLenum eName, const GLuint* value)
139 {
140  glTextureParameterIuiv(m_nTexture, eName, value);
141 }
142 
143 } // namespace qx
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.
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