commit dd7a5c7dd2a26dad3e3564f9f84508b91f7cd663
Author: leszek <leszek@koltunski.pl>
Date:   Tue May 9 10:30:34 2017 +0100

    Revert "This commit (and reading the OpenGL ES 3.0 spec) pretty conclusively proves that, sadly, Nexus 4's Transform Feedback implementation is incomplete (doesn't work with GL_TRIANGLES primitiveMode)"
    
    This reverts commit 5ba19814852de1762e452662a13c4944792014a9.

diff --git a/src/main/res/raw/feedback_vertex_shader.glsl b/src/main/res/raw/feedback_vertex_shader.glsl
index 6a6d012..c4c2eed 100644
--- a/src/main/res/raw/feedback_vertex_shader.glsl
+++ b/src/main/res/raw/feedback_vertex_shader.glsl
@@ -19,8 +19,13 @@
 
 precision lowp float;
 
+#if USEPOINTS == 1
+in float inValue;
+out float outValue;
+#else
 in vec3 inValue;
 out vec3 outValue;
+#endif
 
 //////////////////////////////////////////////////////////////////////////////////////////////
 
