mirror of
https://github.com/emu-russia/pureikyubu.git
synced 2025-04-02 10:42:15 -04:00
7 lines
122 B
GLSL
7 lines
122 B
GLSL
// Flipper GFX Engine fragment shader
|
|
#version 330 core
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(1.0f, 0.0f, 0.0f, 1.0f);
|
|
}
|