2D texture wrapper.
More...
#include <texture.hpp>
2D texture wrapper.
- Examples
- teapot.cpp.
Definition at line 97 of file texture.hpp.
◆ texture_2d() [1/4]
staplegl::texture_2d::texture_2d |
( |
| ) |
|
|
default |
Construct a new texture 2d object.
This constructor is only left here to allow users to create containers of texture_2d objects without having to initialize them immediately, every one of those instances should be overwritten before use through a call to texture_2d::(std::span<T> data, resolution res, texture_color color, bool generate_mipmap)
.
A default-constructed texture_2d object is still valid, having an ID of 0, it is however not backed by any OpenGL texture object, therefore it cannot be used in any OpenGL calls (binding it to a framebuffer, for example, would be practically equivalent to unbinding the color attachment for that particular slot).
- Warning
- this constructor does not initialize the texture object, remember to perform initialization before using it.
◆ texture_2d() [2/4]
template<typename T >
requires std::integral<T> || std::floating_point<T>
Construct a new texture 2d object.
- Template Parameters
-
T | raw type of the data, commonly float or uint8_t (unsigned char) |
- Parameters
-
data | span of floats that contains the texture data. |
res | resolution of the texture. |
color | descriptor of the texture's color format and data type. |
filters | descriptor of the texture's filtering and clamping. |
samples | the number of samples to use for the texture, defaults to 1. |
generate_mipmap | whether to generate mipmaps for the texture, defaults to false. |
Definition at line 298 of file texture.hpp.
◆ ~texture_2d()
staplegl::texture_2d::~texture_2d |
( |
| ) |
|
|
inline |
Destroy the texture 2d object.
Definition at line 137 of file texture.hpp.
◆ texture_2d() [3/4]
staplegl::texture_2d::texture_2d |
( |
const texture_2d & |
| ) |
|
|
delete |
◆ texture_2d() [4/4]
staplegl::texture_2d::texture_2d |
( |
texture_2d && |
other | ) |
|
|
inlinenoexcept |
Construct a new texture 2d object.
- Parameters
-
Definition at line 156 of file texture.hpp.
◆ antialias()
◆ bind()
void staplegl::texture_2d::bind |
( |
| ) |
const |
|
inline |
◆ color()
constexpr auto staplegl::texture_2d::color |
( |
| ) |
const -> texture_color
|
|
inlineconstexpr |
◆ filter()
constexpr auto staplegl::texture_2d::filter |
( |
| ) |
const -> texture_filter
|
|
inlineconstexpr |
◆ get_resolution()
◆ get_unit()
auto constexpr staplegl::texture_2d::get_unit |
( |
| ) |
const -> uint32_t
|
|
inlineconstexpr |
Get the last texture unit this texture was bound to.
- Returns
- uint32_t a texture unit offset from
GL_TEXTURE0
.
Definition at line 230 of file texture.hpp.
◆ id()
constexpr auto staplegl::texture_2d::id |
( |
| ) |
const -> std::uint32_t
|
|
inlineconstexpr |
Get the id of the texture object.
- Returns
- std::uint32_t
Definition at line 250 of file texture.hpp.
◆ operator=() [1/2]
◆ operator=() [2/2]
Move assignment operator.
- Parameters
-
- Returns
- texture_2d& the reference to this object.
Definition at line 172 of file texture.hpp.
◆ set_data()
void staplegl::texture_2d::set_data |
( |
std::span< const float > |
data, |
|
|
resolution |
res, |
|
|
texture_color |
color, |
|
|
bool |
generate_mipmap = false |
|
) |
| |
|
inline |
Set the data object.
- Parameters
-
data | A span of floats that contains the new data. |
res | A resolution object containing the new resolution. |
color | A texture_color object containing the new color format and data type. |
generate_mipmap | Whether to generate mipmaps for the texture, defaults to false. |
Definition at line 327 of file texture.hpp.
◆ set_unit()
void staplegl::texture_2d::set_unit |
( |
std::uint32_t |
unit_offset | ) |
|
|
inline |
Activate the texture on a unit.
- Parameters
-
unit_offset | a texture unit offset from GL_TEXTURE0 . |
Definition at line 190 of file texture.hpp.
◆ unbind()
void staplegl::texture_2d::unbind |
( |
| ) |
const |
|
inline |
Unbind the texture object.
Definition at line 221 of file texture.hpp.
◆ m_antialias
◆ m_color
◆ m_filter
◆ m_id
std::uint32_t staplegl::texture_2d::m_id {} |
|
private |
◆ m_resolution
◆ m_unit
std::uint32_t staplegl::texture_2d::m_unit {} |
|
private |
The documentation for this class was generated from the following file: