summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/glslang/src/Test/max_vertices_0.geom
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/glslang/src/Test/max_vertices_0.geom')
-rw-r--r--chromium/third_party/glslang/src/Test/max_vertices_0.geom12
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/third_party/glslang/src/Test/max_vertices_0.geom b/chromium/third_party/glslang/src/Test/max_vertices_0.geom
new file mode 100644
index 00000000000..08fd6e6f240
--- /dev/null
+++ b/chromium/third_party/glslang/src/Test/max_vertices_0.geom
@@ -0,0 +1,12 @@
+#version 330
+
+layout(points) in;
+layout(triangle_strip, max_vertices = 0) out;
+in highp vec4 v_geom_FragColor[];
+out highp vec4 v_frag_FragColor;
+
+void main (void)
+{
+ EndPrimitive();
+ EndPrimitive();
+}