2020-09-29 13:47:50 +02:00
|
|
|
#include "./texture.hpp"
|
|
|
|
|
|
|
|
#ifdef MM_OPENGL_3_GLES
|
|
|
|
#include <GLES3/gl3.h>
|
|
|
|
#else
|
|
|
|
#include <glad/glad.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
namespace MM::OpenGL {
|
|
|
|
|
|
|
|
uint32_t Texture::getHandle(void) const {
|
|
|
|
return _handle;
|
|
|
|
}
|
|
|
|
|
|
|
|
Texture::Texture(
|
|
|
|
uint32_t handle,
|
2021-06-14 17:44:59 +02:00
|
|
|
int32_t width_, int32_t height_,
|
2020-09-29 13:47:50 +02:00
|
|
|
int32_t internalFormat, int32_t format, int32_t type
|
2021-06-14 17:44:59 +02:00
|
|
|
) : _handle(handle), width(width_), height(height_),
|
2020-09-29 13:47:50 +02:00
|
|
|
_internalFormat(internalFormat), _format(format), _type(type) {}
|
|
|
|
|
|
|
|
Texture::~Texture(void) {
|
|
|
|
glDeleteTextures(1, &_handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::unbind(void) const {
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::bind(uint32_t slot) const {
|
|
|
|
glActiveTexture(GL_TEXTURE0 + slot);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, _handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Texture::resize(int32_t new_width, int32_t new_height) {
|
|
|
|
// if (glTexImage2D == true)
|
|
|
|
glBindTexture(GL_TEXTURE_2D, _handle);
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, _internalFormat, new_width, new_height, 0, _format, _type, NULL);
|
|
|
|
|
|
|
|
// HACK: super dirty
|
|
|
|
*(const_cast<int32_t*>(&width)) = new_width;
|
|
|
|
*(const_cast<int32_t*>(&height)) = new_height;
|
|
|
|
}
|
|
|
|
|
2021-06-14 17:44:59 +02:00
|
|
|
Texture::handle_t Texture::createEmpty(int32_t internalFormat, int32_t width, int32_t height, int32_t format, int32_t type) {
|
2020-09-29 13:47:50 +02:00
|
|
|
uint32_t id;
|
|
|
|
glGenTextures(1, &id);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, id);
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, internalFormat, width, height, 0, format, type, NULL);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
|
glBindTexture(GL_TEXTURE_2D, 0);
|
|
|
|
|
2021-06-14 17:44:59 +02:00
|
|
|
return handle_t(new Texture(id, width, height, internalFormat, format, type));
|
2020-09-29 13:47:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // MM::OpenGL
|
|
|
|
|