clean up old files

This commit is contained in:
pineappleEA
2023-05-11 11:15:30 +02:00
parent 7897a2b9e5
commit cb385e8241
75 changed files with 0 additions and 11001 deletions

View File

@@ -1,13 +0,0 @@
// 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);
}