mirror of
https://github.com/libretro/RetroArch
synced 2025-02-25 03:40:50 +00:00
9 lines
82 B
GLSL
9 lines
82 B
GLSL
|
#version 310 es
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(1.0);
|
||
|
gl_PointSize = 10.0;
|
||
|
}
|
||
|
|