]> git.sesse.net Git - movit/blobdiff - identity.compute
Rename .compute to .comp, to be in line with the Khronos reference compiler.
[movit] / identity.compute
diff --git a/identity.compute b/identity.compute
deleted file mode 100644 (file)
index 9f741bf..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-// Identity compute shader (sometimes useful to do nothing).
-
-layout(local_size_x = 1) in;
-
-void FUNCNAME()
-{
-       vec4 val = INPUT(NORMALIZE_TEXTURE_COORDS(gl_GlobalInvocationID.xy));
-       OUTPUT(gl_GlobalInvocationID.xy, val);
-}