qxLib
|
Base texture class. More...
#include <texture.h>
Public Member Functions | |
QX_DECL_IBUFFER GLenum | GetTarget () const |
Get texture target. More... | |
GLenum | GetInternalFormat () const |
Get texture internal format. More... | |
GLsizei | GetWidth () const |
Get texture width. More... | |
GLsizei | GetHeight () const |
Get texture height. More... | |
void | SetTarget (GLenum eTarget) |
Set texture target. More... | |
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. More... | |
void | Specify2DMultisample (GLsizei nSamples, GLenum eInternalFormat, GLsizei nWidth, GLsizei nHeight, GLboolean bFixedSampleLocations) |
Establish parameters of a multisample texture's image. More... | |
void | GenerateMipmap () |
Generate mipmap for texture. | |
void | SetParameter (GLenum eName, GLfloat value) |
Set texture parameter. More... | |
void | SetParameter (GLenum eName, GLint value) |
Set texture parameter. More... | |
void | SetParameter (GLenum eName, const GLfloat *value) |
Set texture parameter. More... | |
void | SetParameter (GLenum eName, const GLint *value) |
Set texture parameter. More... | |
void | SetParameter (GLenum eName, const GLuint *value) |
Set texture parameter. More... | |
![]() | |
virtual void | Generate ()=0 |
Generate buffer object. | |
virtual void | Bind () const =0 |
Bind a named buffer object. | |
virtual void | Unbind () const =0 |
Unbind a named buffer object. | |
virtual GLuint | GetBufferName () const =0 |
Get the object's name - the reference to the object. More... | |
virtual bool | IsGenerated () const =0 |
Is this buffer generated. More... | |
|
inline |
|
inline |
Get texture internal format.
- | texture internal format |
Definition at line 53 of file texture.inl.
|
inline |
|
inline |
|
inline |
Set texture parameter.
eName | - the symbolic name of a single-valued texture parameter |
value | - the value of eName |
Definition at line 128 of file texture.inl.
|
inline |
Set texture parameter.
eName | - the symbolic name of a single-valued texture parameter |
value | - the value of eName |
Definition at line 133 of file texture.inl.
|
inline |
Set texture parameter.
eName | - the symbolic name of a single-valued texture parameter |
value | - the value of eName |
Definition at line 138 of file texture.inl.
|
inline |
Set texture parameter.
eName | - the symbolic name of a single-valued texture parameter |
value | - the value of eName |
Definition at line 118 of file texture.inl.
|
inline |
Set texture parameter.
eName | - the symbolic name of a single-valued texture parameter |
value | - the value of eName |
Definition at line 123 of file texture.inl.
|
inline |
|
inline |
Establish parameters of a multisample texture's image.
nSamples | - level-of-detail number. |
eInternalFormat | - number of color components in the texture |
nWidth | - width of the texture image |
nHeight | - height of the texture image |
bFixedSampleLocations | - specifies whether the image will use identical sample locations and the same number of samples for all texels in the image, and the sample locations will not depend on the internal format or size of the image |
Definition at line 99 of file texture.inl.
|
inline |
Specify a two-dimensional texture image.
https://www.khronos.org/registry/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml
nLevel | - level-of-detail number. |
eInternalFormat | - number of color components in the texture |
nWidth | - width of the texture image |
nHeight | - height of the texture image |
eFormat | - format of the pixel data |
eType | - data type of the pixel data |
pData | - pointer to the image data in memory |
eTarget | - non-default target. -1 value will use m_eTextureTarget |
Definition at line 73 of file texture.inl.