Common.MatDefs.Light.Deferred.vert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-core Show documentation
Show all versions of jme3-core Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
varying vec2 texCoord;
attribute vec3 inPosition;
attribute vec2 inTexCoord;
void main(){
texCoord = inTexCoord;
vec4 pos = vec4(inPosition, 1.0);
gl_Position = vec4(sign(pos.xy-vec2(0.5)), 0.0, 1.0);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy