]> git.sesse.net Git - movit/blob - flat_input.cpp
Add a variant of expect_equal() for uint8s.
[movit] / flat_input.cpp
1 #include <string.h>
2 #include <assert.h>
3
4 #include "flat_input.h"
5 #include "util.h"
6 #include "opengl.h"
7
8 FlatInput::FlatInput(ImageFormat image_format, MovitPixelFormat pixel_format, GLenum type, unsigned width, unsigned height)
9         : image_format(image_format),
10           pixel_format(pixel_format),
11           type(type),
12           pbo(0),
13           texture_num(0),
14           needs_update(false),
15           finalized(false),
16           output_linear_gamma(false),
17           needs_mipmaps(false),
18           width(width),
19           height(height),
20           pitch(width)
21 {
22         assert(type == GL_FLOAT || type == GL_UNSIGNED_BYTE);
23         register_int("output_linear_gamma", &output_linear_gamma);
24         register_int("needs_mipmaps", &needs_mipmaps);
25 }
26
27 FlatInput::~FlatInput()
28 {
29         if (pbo != 0) {
30                 glDeleteBuffers(1, &pbo);
31                 check_error();
32         }
33         if (texture_num != 0) {
34                 glDeleteTextures(1, &texture_num);
35                 check_error();
36         }
37 }
38
39 void FlatInput::finalize()
40 {
41         // Translate the input format to OpenGL's enums.
42         GLenum internal_format;
43         if (type == GL_FLOAT) {
44                 internal_format = GL_RGBA16F_ARB;
45         } else if (output_linear_gamma) {
46                 assert(type == GL_UNSIGNED_BYTE);
47                 internal_format = GL_SRGB8;
48         } else {
49                 assert(type == GL_UNSIGNED_BYTE);
50                 internal_format = GL_RGBA8;
51         }
52         if (pixel_format == FORMAT_RGB) {
53                 format = GL_RGB;
54                 bytes_per_pixel = 3;
55         } else if (pixel_format == FORMAT_RGBA) {
56                 format = GL_RGBA;
57                 bytes_per_pixel = 4;
58         } else if (pixel_format == FORMAT_BGR) {
59                 format = GL_BGR;
60                 bytes_per_pixel = 3;
61         } else if (pixel_format == FORMAT_BGRA) {
62                 format = GL_BGRA;
63                 bytes_per_pixel = 4;
64         } else if (pixel_format == FORMAT_GRAYSCALE) {
65                 format = GL_LUMINANCE;
66                 bytes_per_pixel = 1;
67         } else {
68                 assert(false);
69         }
70         if (type == GL_FLOAT) {
71                 bytes_per_pixel *= sizeof(float);
72         }
73
74         // Create PBO to hold the texture holding the input image, and then the texture itself.
75         glGenBuffers(1, &pbo);
76         check_error();
77         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, pbo);
78         check_error();
79         glBufferData(GL_PIXEL_UNPACK_BUFFER_ARB, pitch * height * bytes_per_pixel, NULL, GL_STREAM_DRAW);
80         check_error();
81         glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
82         check_error();
83         
84         glGenTextures(1, &texture_num);
85         check_error();
86         glBindTexture(GL_TEXTURE_2D, texture_num);
87         check_error();
88         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
89         check_error();
90         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, needs_mipmaps ? GL_LINEAR_MIPMAP_NEAREST : GL_LINEAR);
91         check_error();
92         glPixelStorei(GL_UNPACK_ROW_LENGTH, pitch);
93         check_error();
94         // Intel/Mesa seems to have a broken glGenerateMipmap() for non-FBO textures, so do it here
95         // instead of calling glGenerateMipmap().
96         glTexParameteri(GL_TEXTURE_2D, GL_GENERATE_MIPMAP, needs_mipmaps ? GL_TRUE : GL_FALSE);
97         check_error();
98         glTexImage2D(GL_TEXTURE_2D, 0, internal_format, width, height, 0, format, type, NULL);
99         check_error();
100         glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
101         check_error();
102
103         needs_update = true;
104         finalized = true;
105 }
106         
107 void FlatInput::set_gl_state(GLuint glsl_program_num, const std::string& prefix, unsigned *sampler_num)
108 {
109         glActiveTexture(GL_TEXTURE0 + *sampler_num);
110         check_error();
111         glBindTexture(GL_TEXTURE_2D, texture_num);
112         check_error();
113
114         if (needs_update) {
115                 // Copy the pixel data into the PBO.
116                 glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, pbo);
117                 check_error();
118                 void *mapped_pbo = glMapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB, GL_WRITE_ONLY);
119                 memcpy(mapped_pbo, pixel_data, pitch * height * bytes_per_pixel);
120                 glUnmapBufferARB(GL_PIXEL_UNPACK_BUFFER_ARB);
121                 check_error();
122
123                 // Re-upload the texture from the PBO.
124                 glPixelStorei(GL_UNPACK_ROW_LENGTH, pitch);
125                 check_error();
126                 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, format, type, BUFFER_OFFSET(0));
127                 check_error();
128                 glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
129                 check_error();
130                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
131                 check_error();
132                 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
133                 check_error();
134                 glBindBuffer(GL_PIXEL_UNPACK_BUFFER_ARB, 0);
135                 check_error();
136
137                 needs_update = false;
138         }
139
140         // Bind it to a sampler.
141         set_uniform_int(glsl_program_num, prefix, "tex", *sampler_num);
142         ++*sampler_num;
143 }
144
145 std::string FlatInput::output_fragment_shader()
146 {
147         return read_file("flat_input.frag");
148 }