summaryrefslogtreecommitdiff
path: root/graphics/asymptote/base/shaders/zero.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/base/shaders/zero.glsl')
-rw-r--r--graphics/asymptote/base/shaders/zero.glsl11
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/asymptote/base/shaders/zero.glsl b/graphics/asymptote/base/shaders/zero.glsl
new file mode 100644
index 0000000000..9bcb6d222e
--- /dev/null
+++ b/graphics/asymptote/base/shaders/zero.glsl
@@ -0,0 +1,11 @@
+layout(binding=2, std430) buffer countBuffer {
+ uint count[];
+};
+
+uniform uint width;
+
+void main()
+{
+ count[uint(gl_FragCoord.y)*width+uint(gl_FragCoord.x)]=0u;
+ discard;
+}