X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fglsl%2Fgeometry_interface_block.glsl;h=9f3fae5bed1a88d8204df98b60c93227ec251344;hb=4942472d6429a52ac1f03fbaffd57d011624c54a;hp=3934dd13908e2d4af070ea12960c9b3ec3f14540;hpb=f2ad2730858046b08e8147297fa01bf3499b86a3;p=libs%2Fgl.git diff --git a/tests/glsl/geometry_interface_block.glsl b/tests/glsl/geometry_interface_block.glsl index 3934dd13..9f3fae5b 100644 --- a/tests/glsl/geometry_interface_block.glsl +++ b/tests/glsl/geometry_interface_block.glsl @@ -14,7 +14,7 @@ void main() #pragma MSP stage(geometry) layout(triangles) in; -layout(triangles, max_vertices=3) out; +layout(triangle_strip, max_vertices=3) out; out GeometryOut { vec2 texcoord; @@ -51,7 +51,7 @@ void main() /* Expected output: geometry layout(triangles) in; -layout(triangles, max_vertices=3) out; +layout(triangle_strip, max_vertices=3) out; out GeometryOut { vec2 texcoord;