Browse Source

tests: Fix faulty merge for shaderpipeline GLSL include test

rdb 2 years ago
parent
commit
be638b06e7
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/display/glsl_include.vert

+ 3 - 1
tests/display/glsl_include.vert

@@ -2,7 +2,9 @@
 
 #extension GL_GOOGLE_include_directive : require
 
-#include "glsl_include_inputs.vert"
+#include "glsl_include_inputs.glsl"
+
+in vec4 p3d_Vertex;
 
 void main() {
   gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;