mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-15 00:06:17 +01:00
Implemented RenderTexture.
This commit is contained in:
parent
5064a388e6
commit
8767435687
@ -5,6 +5,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "render_core/app_window.h"
|
#include "render_core/app_window.h"
|
||||||
|
|
||||||
|
#include "render_core/frame_buffer.h"
|
||||||
//--STRIP
|
//--STRIP
|
||||||
|
|
||||||
void Texture::create_from_image(const Ref<Image> &img) {
|
void Texture::create_from_image(const Ref<Image> &img) {
|
||||||
@ -108,44 +110,44 @@ void Texture::upload() {
|
|||||||
|
|
||||||
glActiveTexture(GL_TEXTURE0 + _texture_index);
|
glActiveTexture(GL_TEXTURE0 + _texture_index);
|
||||||
|
|
||||||
if ((_flags | TEXTURE_FLAG_MIP_MAPS)) {
|
|
||||||
if ((_flags | TEXTURE_FLAG_FILTER)) {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
|
|
||||||
} else {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if ((_flags | TEXTURE_FLAG_FILTER)) {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
||||||
} else {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((_flags | TEXTURE_FLAG_FILTER)) {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Linear Filtering
|
|
||||||
} else {
|
|
||||||
glTexParameteri(_texture, GL_TEXTURE_MAG_FILTER, GL_NEAREST); // raw Filtering
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((_flags & TEXTURE_FLAG_REPEAT) || (_flags & TEXTURE_FLAG_MIRRORED_REPEAT)) {
|
|
||||||
if (_flags & TEXTURE_FLAG_MIRRORED_REPEAT) {
|
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_MIRRORED_REPEAT);
|
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_MIRRORED_REPEAT);
|
|
||||||
} else {
|
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
|
||||||
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
glTexParameterf(_texture, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
||||||
glTexParameterf(_texture, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t texture_type = GL_TEXTURE_2D;
|
uint32_t texture_type = GL_TEXTURE_2D;
|
||||||
|
|
||||||
glBindTexture(texture_type, _texture);
|
glBindTexture(texture_type, _texture);
|
||||||
|
|
||||||
int mipmaps = ((_flags | TEXTURE_FLAG_MIP_MAPS) && _image->has_mipmaps()) ? _image->get_mipmap_count() + 1 : 1;
|
int mipmaps = ((_flags & TEXTURE_FLAG_MIP_MAPS) && _image->has_mipmaps()) ? _image->get_mipmap_count() + 1 : 1;
|
||||||
|
|
||||||
|
if (mipmaps > 1) {
|
||||||
|
if ((_flags & TEXTURE_FLAG_FILTER)) {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR);
|
||||||
|
} else {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ((_flags & TEXTURE_FLAG_FILTER)) {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||||
|
} else {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((_flags & TEXTURE_FLAG_FILTER)) {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MAG_FILTER, GL_LINEAR); // Linear Filtering
|
||||||
|
} else {
|
||||||
|
glTexParameteri(texture_type, GL_TEXTURE_MAG_FILTER, GL_NEAREST); // raw Filtering
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((_flags & TEXTURE_FLAG_REPEAT) || (_flags & TEXTURE_FLAG_MIRRORED_REPEAT)) {
|
||||||
|
if (_flags & TEXTURE_FLAG_MIRRORED_REPEAT) {
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_S, GL_MIRRORED_REPEAT);
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_T, GL_MIRRORED_REPEAT);
|
||||||
|
} else {
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_S, GL_REPEAT);
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_T, GL_REPEAT);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
||||||
|
glTexParameterf(texture_type, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
||||||
|
}
|
||||||
|
|
||||||
_texture_width = _image->get_width();
|
_texture_width = _image->get_width();
|
||||||
_texture_height = _image->get_height();
|
_texture_height = _image->get_height();
|
||||||
@ -169,7 +171,7 @@ void Texture::upload() {
|
|||||||
h = MAX(1, h >> 1);
|
h = MAX(1, h >> 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((_flags | TEXTURE_FLAG_MIP_MAPS) && mipmaps == 1) {
|
if (mipmaps > 1) {
|
||||||
//generate mipmaps if they were requested and the image does not contain them
|
//generate mipmaps if they were requested and the image does not contain them
|
||||||
glGenerateMipmap(texture_type);
|
glGenerateMipmap(texture_type);
|
||||||
}
|
}
|
||||||
@ -275,22 +277,67 @@ Texture::~Texture() {
|
|||||||
|
|
||||||
//RenderTexture
|
//RenderTexture
|
||||||
|
|
||||||
void RenderTexture::set_as_render_target() {
|
bool RenderTexture::get_v_flip() const {
|
||||||
glBindFramebuffer(GL_FRAMEBUFFER, _fbo);
|
return _v_flip;
|
||||||
glViewport(0, 0, _fbo_width, _fbo_height);
|
}
|
||||||
|
void RenderTexture::set_v_flip(const bool p_v_flip) {
|
||||||
|
_v_flip = p_v_flip;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RenderTexture::unset_render_target() {
|
RenderTexture::RenderTextureType RenderTexture::get_type() const {
|
||||||
glBindFramebuffer(GL_FRAMEBUFFER, 0);
|
return _type;
|
||||||
glViewport(0, 0, AppWindow::get_singleton()->get_width(), AppWindow::get_singleton()->get_height());
|
}
|
||||||
|
void RenderTexture::set_type(const RenderTextureType p_type) {
|
||||||
|
_type = p_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderTexture::RenderTexture() :
|
Ref<FrameBuffer> RenderTexture::get_frame_buffer() const {
|
||||||
Texture() {
|
return _frame_buffer;
|
||||||
_fbo_width = 0;
|
}
|
||||||
_fbo_height = 0;
|
void RenderTexture::set_frame_buffer(const Ref<FrameBuffer> &p_frame_buffer) {
|
||||||
_fbo = 0;
|
_frame_buffer = p_frame_buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RenderTexture::update() {
|
||||||
|
if (!_frame_buffer.is_valid()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
_frame_buffer->update();
|
||||||
|
|
||||||
|
Ref<Image> img;
|
||||||
|
|
||||||
|
switch (_type) {
|
||||||
|
case RENDER_TEXTURE_TYPE_COLOR:
|
||||||
|
img = _frame_buffer->get_image_color();
|
||||||
|
|
||||||
|
if (_v_flip) {
|
||||||
|
img->flip_y();
|
||||||
|
}
|
||||||
|
|
||||||
|
create_from_image(img);
|
||||||
|
|
||||||
|
break;
|
||||||
|
case RENDER_TEXTURE_TYPE_DEPTH:
|
||||||
|
img = _frame_buffer->get_image_depth();
|
||||||
|
|
||||||
|
if (_v_flip) {
|
||||||
|
img->flip_y();
|
||||||
|
}
|
||||||
|
|
||||||
|
create_from_image(img);
|
||||||
|
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RenderTexture::RenderTexture() {
|
||||||
|
_type = RENDER_TEXTURE_TYPE_COLOR;
|
||||||
|
_v_flip = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderTexture::~RenderTexture() {
|
RenderTexture::~RenderTexture() {
|
||||||
|
_frame_buffer.unref();
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
#include "render_core/image.h"
|
#include "render_core/image.h"
|
||||||
//--STRIP
|
//--STRIP
|
||||||
|
|
||||||
|
class FrameBuffer;
|
||||||
|
|
||||||
class Texture : public Resource {
|
class Texture : public Resource {
|
||||||
SFW_OBJECT(Texture, Resource);
|
SFW_OBJECT(Texture, Resource);
|
||||||
|
|
||||||
@ -54,19 +56,31 @@ protected:
|
|||||||
uint32_t _texture;
|
uint32_t _texture;
|
||||||
};
|
};
|
||||||
|
|
||||||
//TODO
|
|
||||||
class RenderTexture : public Texture {
|
class RenderTexture : public Texture {
|
||||||
public:
|
public:
|
||||||
void set_as_render_target();
|
enum RenderTextureType {
|
||||||
void unset_render_target();
|
RENDER_TEXTURE_TYPE_COLOR = 0,
|
||||||
|
RENDER_TEXTURE_TYPE_DEPTH,
|
||||||
|
};
|
||||||
|
|
||||||
|
bool get_v_flip() const;
|
||||||
|
void set_v_flip(const bool p_v_flip);
|
||||||
|
|
||||||
|
RenderTextureType get_type() const;
|
||||||
|
void set_type(const RenderTextureType p_type);
|
||||||
|
|
||||||
|
Ref<FrameBuffer> get_frame_buffer() const;
|
||||||
|
void set_frame_buffer(const Ref<FrameBuffer> &p_frame_buffer);
|
||||||
|
|
||||||
|
void update();
|
||||||
|
|
||||||
RenderTexture();
|
RenderTexture();
|
||||||
virtual ~RenderTexture();
|
virtual ~RenderTexture();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
int _fbo_width;
|
bool _v_flip;
|
||||||
int _fbo_height;
|
Ref<FrameBuffer> _frame_buffer;
|
||||||
uint32_t _fbo;
|
RenderTextureType _type;
|
||||||
};
|
};
|
||||||
|
|
||||||
//--STRIP
|
//--STRIP
|
||||||
|
Loading…
Reference in New Issue
Block a user