bevy/crates/glsl-to-spirv/glslang/Test/depthOut.frag

11 lines
134 B
GLSL
Raw Normal View History

#version 130
varying vec4 Color;
varying float Depth;
void main()
{
gl_FragDepth = Depth;
gl_FragColor = Color;
}