X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fglsl%2Fredundant_geometry_gl_position.glsl;h=f8a0e51ba2cebdd42c84f9b7cb1d211052f41cdc;hb=4942472d6429a52ac1f03fbaffd57d011624c54a;hp=99d4330faf883681e2e5c3a428d37ebe37129d8e;hpb=f2ad2730858046b08e8147297fa01bf3499b86a3;p=libs%2Fgl.git diff --git a/tests/glsl/redundant_geometry_gl_position.glsl b/tests/glsl/redundant_geometry_gl_position.glsl index 99d4330f..f8a0e51b 100644 --- a/tests/glsl/redundant_geometry_gl_position.glsl +++ b/tests/glsl/redundant_geometry_gl_position.glsl @@ -8,7 +8,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) @@ -29,7 +29,7 @@ void main() /* Expected output: 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)