mirror of
https://github.com/libretro/RetroArch
synced 2025-02-25 12:41:18 +00:00
14 lines
153 B
GLSL
14 lines
153 B
GLSL
#version 450
|
|
|
|
out gl_PerVertex
|
|
{
|
|
vec4 gl_Position;
|
|
float gl_PointSize;
|
|
float gl_ClipDistance[1];
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_PointSize = 1.0;
|
|
}
|