]> git.sesse.net Git - movit/commitdiff
Merge branch 'master' into epoxy
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 11 Mar 2014 20:18:44 +0000 (21:18 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 11 Mar 2014 20:18:44 +0000 (21:18 +0100)
1  2 
flat_input.cpp
flat_input.h

diff --combined flat_input.cpp
index 6036cf724c30cf97202ba7e9a1906663d679bb32,46370d6c2381c96defbf5e1b8b85b35d9c01f7fd..55c65cc329181e0281b07184c8758eac73477f03
@@@ -1,6 -1,6 +1,6 @@@
  #include <string.h>
  #include <assert.h>
 -#include <GL/glew.h>
 +#include <epoxy/gl.h>
  
  #include "effect_util.h"
  #include "flat_input.h"
@@@ -24,7 -24,7 +24,7 @@@ FlatInput::FlatInput(ImageFormat image_
          pitch(width),
          pixel_data(NULL)
  {
-       assert(type == GL_FLOAT || type == GL_HALF_FLOAT || type == GL_UNSIGNED_BYTE);
+       assert(type == GL_FLOAT || type == GL_HALF_FLOAT || type == GL_UNSIGNED_SHORT || type == GL_UNSIGNED_BYTE);
        register_int("output_linear_gamma", &output_linear_gamma);
        register_int("needs_mipmaps", &needs_mipmaps);
  }
@@@ -46,17 -46,29 +46,29 @@@ void FlatInput::set_gl_state(GLuint gls
                GLint internal_format;
                GLenum format;
                if (type == GL_FLOAT) {
-                       if (pixel_format == FORMAT_RG) {
+                       if (pixel_format == FORMAT_R) {
+                               internal_format = GL_R32F;
+                       } else if (pixel_format == FORMAT_RG) {
                                internal_format = GL_RG32F;
                        } else {
                                internal_format = GL_RGBA32F;
                        }
                } else if (type == GL_HALF_FLOAT) {
-                       if (pixel_format == FORMAT_RG) {
+                       if (pixel_format == FORMAT_R) {
+                               internal_format = GL_R16F;
+                       } else if (pixel_format == FORMAT_RG) {
                                internal_format = GL_RG16F;
                        } else {
                                internal_format = GL_RGBA16F;
                        }
+               } else if (type == GL_UNSIGNED_SHORT) {
+                       if (pixel_format == FORMAT_R) {
+                               internal_format = GL_R16;
+                       } else if (pixel_format == FORMAT_RG) {
+                               internal_format = GL_RG16;
+                       } else {
+                               internal_format = GL_RGBA16;
+                       }
                } else if (output_linear_gamma) {
                        assert(type == GL_UNSIGNED_BYTE);
                        internal_format = GL_SRGB8_ALPHA8;
diff --combined flat_input.h
index 5f3faedc86d29d1baa24ed7f49ae7fbb04a4596e,965e34ddd1b79f8c6b996a572e0edb9a80622586..8ac98ba64a3b0f1dce1968d39dafe0d0350860e0
@@@ -1,7 -1,7 +1,7 @@@
  #ifndef _MOVIT_FLAT_INPUT_H
  #define _MOVIT_FLAT_INPUT_H 1
  
 -#include <GL/glew.h>
 +#include <epoxy/gl.h>
  #include <assert.h>
  #include <string>
  
@@@ -78,7 -78,15 +78,15 @@@ public
                invalidate_pixel_data();
        }
  
-       void set_pixel_data(const fp16_int_t *pixel_data, GLuint pbo = 0)
+       void set_pixel_data(const unsigned short *pixel_data, GLuint pbo = 0)
+       {
+               assert(this->type == GL_UNSIGNED_SHORT);
+               this->pixel_data = pixel_data;
+               this->pbo = pbo;
+               invalidate_pixel_data();
+       }
+       void set_pixel_data_fp16(const fp16_int_t *pixel_data, GLuint pbo = 0)
        {
                assert(this->type == GL_HALF_FLOAT);
                this->pixel_data = pixel_data;