]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/geometry_passthrough.glsl
Fix test case errors revealed by the previous commit
[libs/gl.git] / tests / glsl / geometry_passthrough.glsl
index 200435895812d1248c2677f462eb60f459147c8f..9acfe83ef0303eb7c30869e1ab118e5611422661 100644 (file)
@@ -10,7 +10,7 @@ void main()
 
 #pragma MSP stage(geometry)
 layout(triangles) in;
-layout(triangles, max_vertices=3) out;
+layout(triangle_strip, max_vertices=3) out;
 void main()
 {
        for(int i=0; i<3; ++i)
@@ -39,7 +39,7 @@ void main()
 
 /* Expected output: geometry
 layout(triangles) in;
-layout(triangles, max_vertices=3) out;
+layout(triangle_strip, max_vertices=3) out;
 in vec2 texcoord[];
 out vec2 _gs_out_texcoord;
 void main()