mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-09 22:00:05 +00:00
10 lines
114 B
GLSL
10 lines
114 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
layout(location = 0) in vec4 vColor;
|
|
|
|
void main()
|
|
{
|
|
vec4 v = vColor;
|
|
}
|