mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-14 16:01:07 +00:00
11 lines
129 B
GLSL
11 lines
129 B
GLSL
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
layout(location = 0) out vec2 FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = gl_PointCoord;
|
||
|
}
|
||
|
|