mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
8 lines
98 B
GLSL
8 lines
98 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 result;
|
|
|
|
void main()
|
|
{
|
|
result = vec4(1, 0, 0, 1);
|
|
}
|