|
@@ -1,47 +1,53 @@
|
|
|
#include "wrapper/Texture.h"
|
|
|
|
|
|
-Texture::Texture(Mode mode) : texture(0) {
|
|
|
+Texture::Texture(const TextureFormat& format) : format(format), texture(0) {
|
|
|
glGenTextures(1, &texture);
|
|
|
- glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
- switch(mode) {
|
|
|
- case NEAREST:
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
- break;
|
|
|
- case LINEAR:
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
|
- break;
|
|
|
- }
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
|
- glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
|
+ setNearestFilter();
|
|
|
+ setRepeatWrap();
|
|
|
}
|
|
|
|
|
|
Texture::~Texture() {
|
|
|
glDeleteTextures(1, &texture);
|
|
|
}
|
|
|
|
|
|
-void Texture::setColorData(int width, int height, const Color4* data) {
|
|
|
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
|
|
|
+void Texture::setFilter(GLint param) {
|
|
|
+ bind();
|
|
|
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, param);
|
|
|
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, param);
|
|
|
}
|
|
|
|
|
|
-void Texture::setColorData(int width, int height, const Color3* data) {
|
|
|
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, data);
|
|
|
+void Texture::setNearestFilter() {
|
|
|
+ setFilter(GL_NEAREST);
|
|
|
}
|
|
|
|
|
|
-void Texture::setColorData(int width, int height, const Color2* data) {
|
|
|
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RG, width, height, 0, GL_RG, GL_UNSIGNED_BYTE, data);
|
|
|
+void Texture::setLinearFilter() {
|
|
|
+ setFilter(GL_LINEAR);
|
|
|
}
|
|
|
|
|
|
-void Texture::setColorData(int width, int height, const Color1* data) {
|
|
|
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RED, width, height, 0, GL_RED, GL_UNSIGNED_BYTE, data);
|
|
|
+void Texture::setWrap(GLint param) {
|
|
|
+ bind();
|
|
|
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, param);
|
|
|
+ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, param);
|
|
|
}
|
|
|
|
|
|
-void Texture::setRGBFloatData(int width, int height, const float* data) {
|
|
|
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB32F, width, height, 0, GL_RGB, GL_FLOAT, data);
|
|
|
+void Texture::setRepeatWrap() {
|
|
|
+ setWrap(GL_REPEAT);
|
|
|
}
|
|
|
|
|
|
-void Texture::bind(int index) const {
|
|
|
- glActiveTexture(GL_TEXTURE0 + index);
|
|
|
+void Texture::setClampWrap() {
|
|
|
+ setWrap(GL_CLAMP_TO_EDGE);
|
|
|
+}
|
|
|
+
|
|
|
+void Texture::setData(int width, int height, const void* data) {
|
|
|
glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
+ glTexImage2D(GL_TEXTURE_2D, 0, format.internalformat, width, height, 0, format.format, format.type, data);
|
|
|
}
|
|
|
+
|
|
|
+void Texture::bind() const {
|
|
|
+ glBindTexture(GL_TEXTURE_2D, texture);
|
|
|
+}
|
|
|
+
|
|
|
+void Texture::bindTo(int index) const {
|
|
|
+ glActiveTexture(GL_TEXTURE0 + index);
|
|
|
+ bind();
|
|
|
+}
|