mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-06 16:49:59 +01:00
9 lines
98 B
GLSL
9 lines
98 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 result;
|
|
|
|
void main()
|
|
{
|
|
result = vec4(1, 0, 0, 1);
|
|
}
|