summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp
diff options
context:
space:
mode:
authorMarshall Mohror <mohror64@gmail.com>2021-10-17 03:33:58 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:31 +0100
commit37cb0377ae30e2139f6fa381d04124e51fcccded (patch)
treea1cd811a61535d8aa8790a9ac0400b0e79976499 /src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp
parentTexture Cache: Rescale conversions between depth and color (diff)
downloadyuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar.gz
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar.bz2
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar.lz
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar.xz
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.tar.zst
yuzu-37cb0377ae30e2139f6fa381d04124e51fcccded.zip
Diffstat (limited to 'src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp')
-rw-r--r--src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp b/src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp
new file mode 100644
index 000000000..9463ed842
--- /dev/null
+++ b/src/video_core/host_shaders/vulkan_fidelityfx_fsr_rcas.comp
@@ -0,0 +1,13 @@
+// Copyright 2021 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#version 460 core
+#extension GL_GOOGLE_include_directive : enable
+
+layout(set=0,binding=0) uniform sampler2D InputTexture;
+layout(set=0,binding=1,rgba16f) uniform image2D OutputTexture;
+
+#define USE_RCAS 1
+
+#include "fidelityfx_fsr.comp"