StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
texture.hpp
Go to the documentation of this file.
1
24#pragma once
25
26#include "gl_functions.hpp"
27#include "utility.hpp"
28
29#include <cstdint>
30#include <span>
31#include <concepts>
32
33namespace staplegl {
34
40 std::int32_t internal_format {};
41 std::uint32_t format {};
42 std::uint32_t datatype {};
43};
44
50 std::int32_t min_filter {};
51 std::int32_t mag_filter {};
52 std::int32_t clamping {};
53};
54
63 std::uint32_t type {};
65};
66
67
68
78static constexpr auto
79to_mipmap(std::int32_t filter_type) -> std::int32_t
80{
81 switch (filter_type) {
82 case GL_NEAREST:
83 case GL_NEAREST_MIPMAP_NEAREST:
84 return GL_NEAREST_MIPMAP_NEAREST;
85 case GL_LINEAR:
86 case GL_LINEAR_MIPMAP_LINEAR:
87 return GL_LINEAR_MIPMAP_LINEAR;
88 default:
89 return 0;
90 }
91}
92
98public:
112 texture_2d() = default;
113
126 template <typename T>
127 requires std::integral<T> || std::floating_point<T>
128 texture_2d(std::span<const T> data, resolution res,
131 bool generate_mipmap = false) noexcept;
132
138 {
139 if (m_id != 0) {
140 glDeleteTextures(1, &m_id);
141 }
142 }
143
144 // delete copy and copy assignment operators
145
146 texture_2d(const texture_2d&) = delete;
147 auto operator=(const texture_2d&) -> texture_2d& = delete;
148
149
150
156 texture_2d(texture_2d&& other) noexcept
157 : m_id(other.m_id)
158 , m_unit(other.m_unit)
159 , m_color(other.m_color)
160 , m_resolution(other.m_resolution)
161 , m_antialias(other.m_antialias)
162 {
163 other.m_id = 0;
164 }
165
172 auto operator=(texture_2d&& other) noexcept -> texture_2d&
173 {
174 if (this != &other) {
175 m_id = other.m_id;
176 m_unit = other.m_unit;
177 m_color = other.m_color;
178 m_resolution = other.m_resolution;
179 m_antialias = other.m_antialias;
180 other.m_id = 0;
181 }
182 return *this;
183 }
184
190 void set_unit(std::uint32_t unit_offset)
191 {
192 m_unit = unit_offset;
193 glActiveTexture(GL_TEXTURE0 + unit_offset);
194 bind();
195 }
196
205 void set_data(std::span<const float> data, resolution res,
206 texture_color color, bool generate_mipmap = false);
207
212 void bind() const
213 {
214 glBindTexture(m_antialias.type, m_id);
215 }
216
221 void unbind() const
222 {
223 glBindTexture(m_antialias.type, 0);
224 }
230 [[nodiscard]] auto constexpr get_unit() const -> uint32_t
231 {
232 return m_unit;
233 }
234
240 [[nodiscard]] constexpr auto color() const -> texture_color
241 {
242 return m_color;
243 }
244
250 [[nodiscard]] constexpr auto id() const -> std::uint32_t
251 {
252 return m_id;
253 }
254
260 [[nodiscard]] constexpr auto get_resolution() const -> staplegl::resolution
261 {
262 return m_resolution;
263 };
264
270 [[nodiscard]] constexpr auto filter() const -> texture_filter
271 {
272 return m_filter;
273 }
274
280 [[nodiscard]] constexpr auto antialias() const -> texture_antialias
281 {
282 return m_antialias;
283 }
284
285
286
287private:
288 std::uint32_t m_id {};
289 std::uint32_t m_unit {};
294};
295
296template <typename T>
297 requires std::integral<T> || std::floating_point<T>
298inline texture_2d::texture_2d(std::span<const T> data, resolution res,
299 texture_color color, texture_filter filter, tex_samples samples, bool generate_mipmap) noexcept
300 : m_color { color }
301 , m_filter { filter }
302 , m_resolution { res }
303 , m_antialias { (samples == tex_samples::MSAA_X1) ? texture_antialias { GL_TEXTURE_2D, samples } : texture_antialias { GL_TEXTURE_2D_MULTISAMPLE, samples } }
304{
305 glGenTextures(1, &m_id);
306 glBindTexture(m_antialias.type, m_id);
307
308 if (m_antialias.type == GL_TEXTURE_2D) {
309 glTexParameteri(m_antialias.type, GL_TEXTURE_MIN_FILTER, generate_mipmap ? to_mipmap(filter.min_filter) : filter.min_filter);
310 glTexParameteri(m_antialias.type, GL_TEXTURE_MAG_FILTER, filter.mag_filter);
311 glTexParameteri(m_antialias.type, GL_TEXTURE_WRAP_S, filter.clamping);
312 glTexParameteri(m_antialias.type, GL_TEXTURE_WRAP_T, filter.clamping);
313
314 glTexImage2D(m_antialias.type, 0, color.internal_format, m_resolution.width, m_resolution.height, 0, color.format, color.datatype, data.data());
315 } else if (m_antialias.type == GL_TEXTURE_2D_MULTISAMPLE) {
316 glTexImage2DMultisample(m_antialias.type, m_antialias.samples, color.internal_format,
317 m_resolution.width, m_resolution.height, GL_TRUE);
318 }
319
320 if (generate_mipmap) {
321 glGenerateMipmap(m_antialias.type);
322 }
323
324 glBindTexture(m_antialias.type, 0);
325}
326
327inline void texture_2d::set_data(std::span<const float> data, resolution res, texture_color color, bool generate_mipmap)
328{
329
330 if(m_antialias.type == GL_TEXTURE_2D_MULTISAMPLE) {
331 return;
332 }
333
334 glTexImage2D(m_antialias.type, 0, m_color.internal_format, res.width, res.height, 0, m_color.format, m_color.datatype, data.data());
335 m_color = color;
336 m_resolution = res;
337
338 if (generate_mipmap) {
339 glGenerateMipmap(m_antialias.type);
340 }
341}
342
343} // namespace staplegl
2D texture wrapper.
Definition texture.hpp:97
std::uint32_t m_unit
Definition texture.hpp:289
texture_color m_color
Definition texture.hpp:290
std::uint32_t m_id
Definition texture.hpp:288
constexpr auto id() const -> std::uint32_t
Get the id of the texture object.
Definition texture.hpp:250
constexpr auto filter() const -> texture_filter
Get the texture filter struct.
Definition texture.hpp:270
void set_unit(std::uint32_t unit_offset)
Activate the texture on a unit.
Definition texture.hpp:190
constexpr auto antialias() const -> texture_antialias
Get the texture antialias struct.
Definition texture.hpp:280
auto operator=(const texture_2d &) -> texture_2d &=delete
texture_2d(texture_2d &&other) noexcept
Construct a new texture 2d object.
Definition texture.hpp:156
void unbind() const
Unbind the texture object.
Definition texture.hpp:221
texture_2d(const texture_2d &)=delete
texture_filter m_filter
Definition texture.hpp:291
auto constexpr get_unit() const -> uint32_t
Get the last texture unit this texture was bound to.
Definition texture.hpp:230
texture_2d()=default
Construct a new texture 2d object.
void bind() const
Bind the texture object.
Definition texture.hpp:212
resolution m_resolution
Definition texture.hpp:292
auto operator=(texture_2d &&other) noexcept -> texture_2d &
Move assignment operator.
Definition texture.hpp:172
texture_antialias m_antialias
Definition texture.hpp:293
constexpr auto get_resolution() const -> staplegl::resolution
Get the resolution of the texture object.
Definition texture.hpp:260
constexpr auto color() const -> texture_color
Get the texture color struct.
Definition texture.hpp:240
void set_data(std::span< const float > data, resolution res, texture_color color, bool generate_mipmap=false)
Set the data object.
Definition texture.hpp:327
Loads OpenGL functions.
tex_samples
An enum that represents the number of samples for a texture.
Definition utility.hpp:38
static constexpr auto to_mipmap(std::int32_t filter_type) -> std::int32_t
Convert a filter type to its mipmap counterpart.
Definition texture.hpp:79
A struct that represents an image's dimensions.
Definition utility.hpp:28
std::int32_t height
Definition utility.hpp:31
std::int32_t width
Definition utility.hpp:30
OpenGL texture details relating to the number of samples to use for the texture.
Definition texture.hpp:62
OpenGL texture details relating to the color format and data type.
Definition texture.hpp:39
std::int32_t internal_format
Definition texture.hpp:40
std::uint32_t datatype
Definition texture.hpp:42
std::uint32_t format
Definition texture.hpp:41
OpenGL texture details relating to filtering and clamping of the image.
Definition texture.hpp:49
std::int32_t mag_filter
Definition texture.hpp:51
std::int32_t clamping
Definition texture.hpp:52
std::int32_t min_filter
Definition texture.hpp:50
Utility functions for parsing files.