12 lines
167 B
GLSL
12 lines
167 B
GLSL
#version 310 es
|
|
|
|
precision highp float;
|
|
|
|
layout(location = 0) in vec3 color;
|
|
|
|
layout(location = 0) out vec4 fragcolor;
|
|
|
|
void main()
|
|
{
|
|
fragcolor = vec4(color, 0.5);
|
|
}
|