summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/blit_color_float.frag
blob: c0c8322969219ee0778da4494ee5a496221d63d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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);
}