summaryrefslogtreecommitdiff
path: root/webhogg/wasm/src/context/main.fs
diff options
context:
space:
mode:
Diffstat (limited to 'webhogg/wasm/src/context/main.fs')
-rw-r--r--webhogg/wasm/src/context/main.fs9
1 files changed, 9 insertions, 0 deletions
diff --git a/webhogg/wasm/src/context/main.fs b/webhogg/wasm/src/context/main.fs
new file mode 100644
index 0000000..971d2db
--- /dev/null
+++ b/webhogg/wasm/src/context/main.fs
@@ -0,0 +1,9 @@
+#version 300 es
+
+precision highp float;
+
+out vec4 color;
+
+void main() {
+ color = vec4(0.0, 1.0, 1.0, 1.0);
+}