mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-10-14 01:21:34 +08:00
7 lines
103 B
GLSL
7 lines
103 B
GLSL
varying vec3 normal;
|
|
|
|
void main(void)
|
|
{
|
|
gl_FragColor = vec4(0.5 * normalize(normal) + 0.5, 1.0);
|
|
}
|