Sign in
chromium
/
external
/
github.com
/
KhronosGroup
/
glslang.git
/
HEAD
/
.
/
Test
/
conservativeDepth.frag
blob: 0db4f5a8db0c545d51b19009a000180c0951af6a [
file
]
#version 300 es
#extension GL_EXT_conservative_depth: require
layout
(
depth_any
)
out
highp
float
gl_FragDepth
;
void
main
()
{
gl_FragDepth
=
1.0
;
}