aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag')
-rw-r--r--Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag11
1 files changed, 0 insertions, 11 deletions
diff --git a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag b/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
deleted file mode 100644
index 89dc1ff8..00000000
--- a/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
+++ /dev/null
@@ -1,11 +0,0 @@
-#version 450 core
-
-layout (binding = 0, set = 2) uniform sampler2D tex;
-
-layout (location = 0) in vec2 tex_coord;
-layout (location = 0) out vec4 colour;
-
-void main()
-{
- colour = texture(tex, tex_coord);
-} \ No newline at end of file