allwinner_a64/android/external/vulkan-validation-layers/demos/smoke/Smoke.frag
2018-08-08 16:14:42 +08:00

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);
}