X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=identity.compute;fp=identity.compute;h=0000000000000000000000000000000000000000;hp=9f741bf9dcc3fdcd4dbbb8f9cc9e516686149f92;hb=24ebefbbd38538bc85ae94cd3dfbb16a4abf0d98;hpb=b3816fb6d789ea3a682193128ea7a00aef8fa91c diff --git a/identity.compute b/identity.compute deleted file mode 100644 index 9f741bf..0000000 --- a/identity.compute +++ /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); -}