yuzu-mainline/src/video_core/host_shaders/convert_d32f_to_abgr8.frag

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
367 B
GLSL
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#version 450
layout(binding = 0) uniform sampler2D depth_tex;
layout(location = 0) out vec4 color;
void main() {
ivec2 coord = ivec2(gl_FragCoord.xy);
2023-10-15 19:20:45 +02:00
float depth = texelFetch(depth_tex, coord, 0).r;
2023-10-07 09:28:09 +02:00
color = vec4(depth, depth, depth, 1.0);
}