X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tests%2Fglsl%2Fredundant_geometry_gl_position.glsl;h=130f9c23706310440616d266e8c0862e406d0c95;hb=d6a04ea0146ea58c13a10098957e1d48492e26c0;hp=99d4330faf883681e2e5c3a428d37ebe37129d8e;hpb=6ba314198dce795408690456fa1f0ef559aa1532;p=libs%2Fgl.git diff --git a/tests/glsl/redundant_geometry_gl_position.glsl b/tests/glsl/redundant_geometry_gl_position.glsl index 99d4330f..130f9c23 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) @@ -19,6 +19,8 @@ void main() } } +// Target API: Vulkan + /* Expected output: vertex layout(location=0) in vec4 position; void main() @@ -29,7 +31,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)