]> git.sesse.net Git - movit/blob - flat_input.cpp
Fix the widget display in the demo app.
[movit] / flat_input.cpp
1 #include <string.h>
2 #include <assert.h>
3 #include <GL/glew.h>
4
5 #include "effect_util.h"
6 #include "flat_input.h"
7 #include "resource_pool.h"
8 #include "util.h"
9
10 using namespace std;
11
12 namespace movit {
13
14 FlatInput::FlatInput(ImageFormat image_format, MovitPixelFormat pixel_format, GLenum type, unsigned width, unsigned height)
15         : image_format(image_format),
16           pixel_format(pixel_format),
17           type(type),
18           pbo(0),
19           texture_num(0),
20           output_linear_gamma(false),
21           needs_mipmaps(false),
22           width(width),
23           height(height),
24           pitch(width),
25           pixel_data(NULL)
26 {
27         assert(type == GL_FLOAT || type == GL_UNSIGNED_BYTE);
28         register_int("output_linear_gamma", &output_linear_gamma);
29         register_int("needs_mipmaps", &needs_mipmaps);
30 }
31
32 FlatInput::~FlatInput()
33 {
34         if (texture_num != 0) {
35                 resource_pool->release_2d_texture(texture_num);
36         }
37 }
38
39 void FlatInput::set_gl_state(GLuint glsl_program_num, const string& prefix, unsigned *sampler_num)
40 {
41         glActiveTexture(GL_TEXTURE0 + *sampler_num);
42         check_error();
43
44         if (texture_num == 0) {
45                 // Translate the input format to OpenGL's enums.
46                 GLint internal_format;
47                 GLenum format;
48                 if (type == GL_FLOAT) {
49                         internal_format = GL_RGBA32F_ARB;
50                 } else if (output_linear_gamma) {
51                         assert(type == GL_UNSIGNED_BYTE);
52                         internal_format = GL_SRGB8_ALPHA8;
53                 } else {
54                         assert(type == GL_UNSIGNED_BYTE);
55                         internal_format = GL_RGBA8;
56                 }
57                 if (pixel_format == FORMAT_RGB) {
58                         format = GL_RGB;
59                 } else if (pixel_format == FORMAT_RGBA_PREMULTIPLIED_ALPHA ||
60                            pixel_format == FORMAT_RGBA_POSTMULTIPLIED_ALPHA) {
61                         format = GL_RGBA;
62                 } else if (pixel_format == FORMAT_BGR) {
63                         format = GL_BGR;
64                 } else if (pixel_format == FORMAT_BGRA_PREMULTIPLIED_ALPHA ||
65                            pixel_format == FORMAT_BGRA_POSTMULTIPLIED_ALPHA) {
66                         format = GL_BGRA;
67                 } else if (pixel_format == FORMAT_GRAYSCALE) {
68                         format = GL_LUMINANCE;
69                 } else {
70                         assert(false);
71                 }
72
73                 // (Re-)upload the texture.
74                 texture_num = resource_pool->create_2d_texture(internal_format, width, height);
75                 glBindTexture(GL_TEXTURE_2D, texture_num);
76                 check_error();
77                 glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, pbo);
78                 check_error();
79                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, needs_mipmaps ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR);
80                 check_error();
81                 glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
82                 check_error();
83                 glPixelStorei(GL_UNPACK_ROW_LENGTH, pitch);
84                 check_error();
85                 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, pixel_data);
86                 check_error();
87                 glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
88                 check_error();
89                 if (needs_mipmaps) {
90                         glGenerateMipmap(GL_TEXTURE_2D);
91                         check_error();
92                 }
93                 glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
94                 check_error();
95                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
96                 check_error();
97                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
98                 check_error();
99                 glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
100                 check_error();
101         } else {
102                 glBindTexture(GL_TEXTURE_2D, texture_num);
103                 check_error();
104         }
105
106         // Bind it to a sampler.
107         set_uniform_int(glsl_program_num, prefix, "tex", *sampler_num);
108         ++*sampler_num;
109 }
110
111 string FlatInput::output_fragment_shader()
112 {
113         return read_file("flat_input.frag");
114 }
115
116 void FlatInput::invalidate_pixel_data()
117 {
118         if (texture_num != 0) {
119                 resource_pool->release_2d_texture(texture_num);
120                 texture_num = 0;
121         }
122 }
123
124 }  // namespace movit