
shaders.fragmentcolor.shader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gltf Show documentation
Show all versions of gltf Show documentation
BIMserver plugin that provides a binary glTf serializer
precision highp float;
varying vec3 v_normal;
varying vec4 v_color;
uniform vec4 u_diffuse;
uniform vec4 u_specular;
uniform float u_shininess;
void main(void) {
vec3 normal = normalize(v_normal);
gl_FragColor = v_color;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy