aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Vulkan/Shaders/ColorBlitFragmentShaderSource.frag
blob: 89dc1ff8f63a984ea492eedb5b0e8637dd2fd314 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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);
}