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

assets.minecraft.shaders.program.bumpy.vsh Maven / Gradle / Ivy

The newest version!
#version 150

in vec4 Position;

uniform mat4 ProjMat;
uniform vec2 InSize;

out vec2 texCoord;
out vec2 oneTexel;

void main(){
    vec4 outPos = ProjMat * vec4(Position.xy, 0.0, 1.0);
    gl_Position = vec4(outPos.xy, 0.2, 1.0);

    oneTexel = 1.0 / InSize;
    texCoord = outPos.xy * 0.5 + 0.5;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy