mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 09:32:58 +00:00
13 lines
138 B
GLSL
13 lines
138 B
GLSL
|
#version 450
|
||
|
|
||
|
void write_outblock()
|
||
|
{
|
||
|
gl_PointSize = 1.0;
|
||
|
gl_Position = vec4(gl_PointSize);
|
||
|
}
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
write_outblock();
|
||
|
}
|