summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/vulkan_blit_color_float.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/host_shaders/vulkan_blit_color_float.frag')
-rw-r--r--src/video_core/host_shaders/vulkan_blit_color_float.frag13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/video_core/host_shaders/vulkan_blit_color_float.frag b/src/video_core/host_shaders/vulkan_blit_color_float.frag
deleted file mode 100644
index c0c832296..000000000
--- a/src/video_core/host_shaders/vulkan_blit_color_float.frag
+++ /dev/null
@@ -1,13 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#version 450
-
-layout(binding = 0) uniform sampler2D tex;
-
-layout(location = 0) in vec2 texcoord;
-layout(location = 0) out vec4 color;
-
-void main() {
- color = textureLod(tex, texcoord, 0);
-}