StapleGL
Header-only C++20 OpenGL wrapper
Loading...
Searching...
No Matches
cubemap.hpp
Go to the documentation of this file.
1
17#pragma once
18
19#include "gl_functions.hpp"
20#include "texture.hpp"
21#include "utility.hpp"
22
23#include <cstddef>
24#include <cstdint>
25#include <span>
26
27namespace staplegl {
28
33class cubemap {
34
35public:
36
46 cubemap(std::span<std::span<std::byte>, 6> data, resolution res,
48 texture_filter filter,
49 bool generate_mipmaps = false) noexcept;
50
55 ~cubemap() noexcept
56 {
57 if (m_id != 0) {
58 glDeleteTextures(1, &m_id);
59 }
60 }
61
62 // delete copy and copy assignment operators
63
64 cubemap(const cubemap&) = delete;
65 auto operator=(const cubemap&) -> cubemap& = delete;
66
72 cubemap(cubemap&& other) noexcept
73 : m_id(other.m_id)
74 , m_res(other.m_res)
75 , m_color(other.m_color)
76 , m_filter(other.m_filter)
77 {
78 other.m_id = 0;
79 }
80
87 auto operator=(cubemap&& other) noexcept -> cubemap&
88 {
89 if (this != &other) {
90 m_id = other.m_id;
91 m_color = other.m_color;
92 m_res = other.m_res;
93 m_filter = other.m_filter;
94 other.m_id = 0;
95 }
96 return *this;
97 }
98
103 void bind() const;
104
109 static void unbind();
110
116 [[nodiscard]] constexpr auto id() const noexcept -> uint32_t { return m_id; }
117
123 [[nodiscard]] constexpr auto color() const noexcept -> texture_color { return m_color; }
124
130 [[nodiscard]] constexpr auto res() const noexcept -> resolution { return m_res; }
131
137 void set_unit(std::uint32_t unit_offset) const;
138
139private:
140 uint32_t m_id {};
144};
145
146inline cubemap::cubemap(std::span<std::span<std::byte>, 6> data, resolution res, texture_color color, texture_filter filter, bool generate_mipmaps) noexcept
147 : m_res(res)
148 , m_color(color)
149 , m_filter(filter)
150{
151 glGenTextures(1, &m_id);
152 glBindTexture(GL_TEXTURE_CUBE_MAP, m_id);
153
154 glTextureParameteri(m_id, GL_TEXTURE_WRAP_S, filter.clamping);
155 glTextureParameteri(m_id, GL_TEXTURE_WRAP_T, filter.clamping);
156 glTextureParameteri(m_id, GL_TEXTURE_WRAP_R, filter.clamping);
157
158 glTextureParameteri(m_id, GL_TEXTURE_MIN_FILTER, generate_mipmaps ? to_mipmap(filter.min_filter) : filter.min_filter);
159 glTextureParameteri(m_id, GL_TEXTURE_MAG_FILTER, filter.mag_filter);
160
161 int i = 0;
162 for (auto const& face : data) {
163 glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X + i++, 0, m_color.internal_format, m_res.width, m_res.height, 0, m_color.format, m_color.datatype, face.data());
164 }
165
166 if (generate_mipmaps) {
167 glGenerateTextureMipmap(m_id);
168 }
169};
170
171inline void cubemap::bind() const
172{
173 glBindTexture(GL_TEXTURE_CUBE_MAP, m_id);
174}
175
176inline void cubemap::unbind()
177{
178 glBindTexture(GL_TEXTURE_CUBE_MAP, 0);
179}
180
181inline void cubemap::set_unit(std::uint32_t unit_offset) const
182{
183 glActiveTexture(GL_TEXTURE0 + unit_offset);
184 glBindTexture(GL_TEXTURE_CUBE_MAP, m_id);
185}
186
187} // namespace staplegl
Cube map texture wrapper.
Definition cubemap.hpp:33
texture_filter m_filter
Definition cubemap.hpp:143
constexpr auto id() const noexcept -> uint32_t
Get the texture id.
Definition cubemap.hpp:116
texture_color m_color
Definition cubemap.hpp:142
void bind() const
Bind the cubemap texture.
Definition cubemap.hpp:171
resolution m_res
Definition cubemap.hpp:141
~cubemap() noexcept
Destroy the cubemap object.
Definition cubemap.hpp:55
cubemap(cubemap &&other) noexcept
Construct a new cubemap object from another cubemap object.
Definition cubemap.hpp:72
auto operator=(cubemap &&other) noexcept -> cubemap &
Move assignment operator.
Definition cubemap.hpp:87
void set_unit(std::uint32_t unit_offset) const
Set the unit object to bind the texture to.
Definition cubemap.hpp:181
static void unbind()
Unbind the cubemap texture.
Definition cubemap.hpp:176
constexpr auto color() const noexcept -> texture_color
Get the texture color.
Definition cubemap.hpp:123
cubemap(const cubemap &)=delete
cubemap(std::span< std::span< std::byte >, 6 > data, resolution res, texture_color color, texture_filter filter, bool generate_mipmaps=false) noexcept
Construct a new cubemap object.
Definition cubemap.hpp:146
constexpr auto res() const noexcept -> resolution
Get the resolution of the cubemap.
Definition cubemap.hpp:130
auto operator=(const cubemap &) -> cubemap &=delete
Loads OpenGL functions.
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
OpenGL texture details relating to the color format and data type.
Definition texture.hpp:39
OpenGL texture details relating to filtering and clamping of the image.
Definition texture.hpp:49
Texture abstraction.
Utility functions for parsing files.