13 inline base_texture::~base_texture()
15 if (m_nTexture != std::numeric_limits<GLuint>::max())
17 glDeleteTextures(1, &m_nTexture);
18 m_nTexture = std::numeric_limits<GLuint>::max();
24 if (m_nTexture == std::numeric_limits<GLuint>::max())
25 glGenTextures(1, &m_nTexture);
30 glBindTexture(m_eTextureTarget, m_nTexture);
35 glBindTexture(m_eTextureTarget, 0);
45 return m_nTexture != std::numeric_limits<GLuint>::max();
50 return m_eTextureTarget;
55 return m_eInternalFormat;
70 m_eTextureTarget = eTarget;
75 GLenum eInternalFormat,
84 eTarget != -1 ? eTarget : m_eTextureTarget,
96 m_eInternalFormat = eInternalFormat;
101 GLenum eInternalFormat,
104 GLboolean bFixedSampleLocations)
106 glTexImage2DMultisample(m_eTextureTarget, nSamples, eInternalFormat, nWidth, nHeight, bFixedSampleLocations);
110 m_eInternalFormat = eInternalFormat;
115 glGenerateMipmap(m_eTextureTarget);
120 glTextureParameterf(m_nTexture, eName, value);
125 glTextureParameteri(m_nTexture, eName, value);
130 glTextureParameterfv(m_nTexture, eName, value);
135 glTextureParameterIiv(m_nTexture, eName, value);
140 glTextureParameterIuiv(m_nTexture, eName, value);
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.
void SetParameter(GLenum eName, GLfloat value)
Set texture parameter.
GLsizei GetHeight() const
Get texture height.
GLsizei GetWidth() const
Get texture width.
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.
void Specify2DMultisample(GLsizei nSamples, GLenum eInternalFormat, GLsizei nWidth, GLsizei nHeight, GLboolean bFixedSampleLocations)
Establish parameters of a multisample texture's image.
void GenerateMipmap()
Generate mipmap for texture.
GLenum GetInternalFormat() const
Get texture internal format.
void SetTarget(GLenum eTarget)
Set texture target.