]> git.sesse.net Git - movit/commitdiff
Store GL_FLOAT FlatInputs as fp32, not fp16.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 19 Jan 2014 19:42:22 +0000 (20:42 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 19 Jan 2014 19:42:22 +0000 (20:42 +0100)
There are two primary reasons for this:

 - GL_FLOAT FlatInput is primarily used for tests, and even more importantly,
   mostly accuracy tests. ATI's drivers appear to round off fp32 -> fp16
   wrong (truncate instead of round), which breaks some of these tests.
 - In case someone _would_ use GL_FLOAT inputs, they'd probably be updated
   every frame anyway, so the fp32 -> fp16 conversion step (probably on CPU)
   will negate any performance benefits by fp16 sampling anyway.

flat_input.cpp

index 28380f4ad19a94a763292ae85f79ab6578e1b216..cf53034a372078dadf56d99e280397c5d236bd04 100644 (file)
@@ -39,7 +39,7 @@ void FlatInput::finalize()
        // Translate the input format to OpenGL's enums.
        GLenum internal_format;
        if (type == GL_FLOAT) {
        // Translate the input format to OpenGL's enums.
        GLenum internal_format;
        if (type == GL_FLOAT) {
-               internal_format = GL_RGBA16F_ARB;
+               internal_format = GL_RGBA32F_ARB;
        } else if (output_linear_gamma) {
                assert(type == GL_UNSIGNED_BYTE);
                internal_format = GL_SRGB8_ALPHA8;
        } else if (output_linear_gamma) {
                assert(type == GL_UNSIGNED_BYTE);
                internal_format = GL_SRGB8_ALPHA8;