Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/shaders/compositor/compositor_image.glsl')
-rw-r--r--source/blender/gpu/shaders/compositor/compositor_image.glsl7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/gpu/shaders/compositor/compositor_image.glsl b/source/blender/gpu/shaders/compositor/compositor_image.glsl
deleted file mode 100644
index 1982b1819d8..00000000000
--- a/source/blender/gpu/shaders/compositor/compositor_image.glsl
+++ /dev/null
@@ -1,7 +0,0 @@
-/* Copy the input float 2D sampler to the output RGBA16F 2D image. */
-
-void main()
-{
- ivec2 xy = ivec2(gl_GlobalInvocationID.xy);
- imageStore(output_image, xy, texelFetch(input_sampler, xy, 0));
-}