diff options
| author | Liam <byteslice@airmail.cc> | 2024-01-18 11:44:13 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-01-31 11:27:21 -0500 |
| commit | 9bdf09bd768f73073e9d1cbc65febfd7f7955db3 (patch) | |
| tree | 7d29d4c4f61f4c0272056af2370a2c75a769f7d6 /src/video_core/host_shaders/vulkan_present.frag | |
| parent | d4de04584f14f3ea8fde4cd79102b887c084fbc2 (diff) | |
renderer_vulkan: implement layer stack composition
Diffstat (limited to 'src/video_core/host_shaders/vulkan_present.frag')
| -rw-r--r-- | src/video_core/host_shaders/vulkan_present.frag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host_shaders/vulkan_present.frag b/src/video_core/host_shaders/vulkan_present.frag index 97e098ced..adada9411 100644 --- a/src/video_core/host_shaders/vulkan_present.frag +++ b/src/video_core/host_shaders/vulkan_present.frag @@ -7,7 +7,7 @@ layout (location = 0) in vec2 frag_tex_coord; layout (location = 0) out vec4 color; -layout (binding = 1) uniform sampler2D color_texture; +layout (binding = 0) uniform sampler2D color_texture; void main() { color = texture(color_texture, frag_tex_coord); |
