]> git.sesse.net Git - movit/commitdiff
Draw an oversized triangle instead of a quad.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 2 Sep 2015 21:52:47 +0000 (23:52 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Wed, 2 Sep 2015 21:52:47 +0000 (23:52 +0200)
This is mostly theoretical; I've never been able to measure any
sort of real change from this. But according to popular cargo-culting,
it might have an effect since there are fewer edge pixels to shade.

effect_chain.cpp

index 870da814e6f32c4ccba36ff2f2e140a5ec73f213..048cc1e0dbe878b881449af0366aa19feb2217c3 100644 (file)
@@ -1607,10 +1607,9 @@ void EffectChain::execute_phase(Phase *phase, bool last_phase, map<Phase *, GLui
 
        // Now draw!
        float vertices[] = {
-               0.0f, 1.0f,
+               0.0f, 2.0f,
                0.0f, 0.0f,
-               1.0f, 1.0f,
-               1.0f, 0.0f
+               2.0f, 0.0f
        };
 
        GLuint vao;
@@ -1622,7 +1621,7 @@ void EffectChain::execute_phase(Phase *phase, bool last_phase, map<Phase *, GLui
        GLuint position_vbo = fill_vertex_attribute(glsl_program_num, "position", 2, GL_FLOAT, sizeof(vertices), vertices);
        GLuint texcoord_vbo = fill_vertex_attribute(glsl_program_num, "texcoord", 2, GL_FLOAT, sizeof(vertices), vertices);  // Same as vertices.
 
-       glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
+       glDrawArrays(GL_TRIANGLES, 0, 3);
        check_error();
 
        cleanup_vertex_attribute(glsl_program_num, "position", position_vbo);