summaryrefslogtreecommitdiffstats
path: root/src/video_core/host_shaders/vulkan_color_clear.frag
blob: 617bf01e170d23576ea76be88eee83d3557d775e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#version 460 core

layout (push_constant) uniform PushConstants {
    vec4 clear_color;
};

layout(location = 0) out vec4 color;

void main() {
    color = clear_color;
}