All Downloads are FREE. Search and download functionalities are using the official Maven repository.

one.empty3.library1.shader.sample.fragment.glsl Maven / Gradle / Ivy

There is a newer version: 2024.5.10
Show newest version
precision mediump float;
varying vec2 tc; // texture coordinate of pixel (interpolated)
varying vec3 fn; // fragment normal of pixel (interpolated)

void main() {
  gl_FragColor = vec4(tc.x, tc.y, 0.0, 1.0);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy