Expand description
Contains Texture
, Sampler
, and other related data structures.
Structs§
- Info
- Reference to a
Texture
. - Sampler
- Texture sampler properties for filtering and wrapping modes.
- Texture
- A texture and its sampler.
Enums§
- MagFilter
- Magnification filter.
- MinFilter
- Minification filter.
- Wrapping
Mode - Texture co-ordinate wrapping mode.
Constants§
- CLAMP_
TO_ EDGE - Corresponds to
GL_CLAMP_TO_EDGE
. - LINEAR
- Corresponds to
GL_LINEAR
. - LINEAR_
MIPMAP_ LINEAR - Corresponds to
GL_LINEAR_MIPMAP_LINEAR
. - LINEAR_
MIPMAP_ NEAREST - Corresponds to
GL_LINEAR_MIPMAP_NEAREST
. - MIRRORED_
REPEAT - Corresponds to
GL_MIRRORED_REPEAT
. - NEAREST
- Corresponds to
GL_NEAREST
. - NEAREST_
MIPMAP_ LINEAR - Corresponds to
GL_NEAREST_MIPMAP_LINEAR
. - NEAREST_
MIPMAP_ NEAREST - Corresponds to
GL_NEAREST_MIPMAP_NEAREST
. - REPEAT
- Corresponds to
GL_REPEAT
. - VALID_
MAG_ FILTERS - All valid magnification filters.
- VALID_
MIN_ FILTERS - All valid minification filters.
- VALID_
WRAPPING_ MODES - All valid wrapping modes.