mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-02 01:57:11 +02:00
Somewhat better NvFlinger (I guess) (fixes #30)
This commit is contained in:
parent
257e7ece70
commit
a7912d0990
14 changed files with 820 additions and 444 deletions
13
Ryujinx.Graphics/Gal/OpenGL/FbFragShader.glsl
Normal file
13
Ryujinx.Graphics/Gal/OpenGL/FbFragShader.glsl
Normal file
|
@ -0,0 +1,13 @@
|
|||
#version 330 core
|
||||
|
||||
precision highp float;
|
||||
|
||||
uniform sampler2D tex;
|
||||
|
||||
in vec2 tex_coord;
|
||||
|
||||
out vec4 out_frag_color;
|
||||
|
||||
void main(void) {
|
||||
out_frag_color = texture(tex, tex_coord);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue