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

fty-gui.nifty-jogl-renderer.1.4.3.source-code.nifty.fs Maven / Gradle / Ivy

The newest version!
#version 150 core

uniform sampler2D uTex;

layout(origin_upper_left) in vec4 gl_FragCoord;

in vec4 vColor;
in vec2 vTexture;

out vec4 fColor;

void main() {
  vec4 frag = gl_FragCoord;
  fColor = vColor * texture(uTex, vTexture, 0);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy