Sign in
flutter
/
third_party
/
tinygltf
/
b495603c678f093e0b9c2ee339947a96c3a4b618
/
.
/
examples
/
glview
/
shader.frag
blob: bd2fc49e01a5c0113e5d27f537782c6c19ba4553 [
file
] [
log
] [
blame
]
varying vec3 normal
;
void
main
(
void
)
{
gl_FragColor
=
vec4
(
0.5
*
normalize
(
normal
)
+
0.5
,
1.0
);
}