aboutsummaryrefslogtreecommitdiff
path: root/src/buffer/frame/texture_framebuffer.h
blob: 31153ff395f74f5250cc7f243a519e439b3c7352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#pragma once

class TextureFramebuffer {
private:
	GLuint _id;
	GLuint _texture;

	bool _good = false;

public:
	struct Guard {
		const GLuint _id;

		Guard(GLuint id): _id(id) {
			glBindFramebuffer(GL_FRAMEBUFFER, _id);
		}
		~Guard() {
			glBindFramebuffer(GL_FRAMEBUFFER, 0);
		}
	};

	Guard use() const {
		return Guard(_id);
	}

	TextureFramebuffer(std::size_t width, std::size_t height) {
		glGenFramebuffers(1, &_id);

		auto guard = use();

		glGenTextures(1, &_texture);
		glBindTexture(GL_TEXTURE_2D, _texture);
		glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, (void*)0);
		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
		glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
		glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, _texture, 0);

		if ( glCheckFramebufferStatus(GL_FRAMEBUFFER) == GL_FRAMEBUFFER_COMPLETE ) {
			_good = true;
		}
	}

	~TextureFramebuffer() {
		glDeleteFramebuffers(1, &_id);
	}

	bool isGood() const {
		return _good;
	}

	void resize(std::size_t width, std::size_t height) const {
		auto guard = use();

		glViewport(0, 0, width, height);
		glBindTexture(GL_TEXTURE_2D, _texture);
		glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, (void*)0);
	}

	GLuint getTexture() const {
		return _texture;
	}
};