assets.minecraft.shaders.program.phosphor.fsh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of creo-shader-interaction-api Show documentation
Show all versions of creo-shader-interaction-api Show documentation
Interaction with vanilla shaders.
The newest version!
#version 150
uniform sampler2D DiffuseSampler;
uniform sampler2D PrevSampler;
in vec2 texCoord;
in vec2 oneTexel;
uniform vec2 InSize;
uniform vec3 Phosphor;
out vec4 fragColor;
void main() {
vec4 CurrTexel = texture(DiffuseSampler, texCoord);
vec4 PrevTexel = texture(PrevSampler, texCoord);
fragColor = vec4(max(PrevTexel.rgb * Phosphor, CurrTexel.rgb), 1.0);
}