You've already forked minecraft-assets
Create/Update assets for version 22w46a
This commit is contained in:
29
assets/minecraft/shaders/program/bits.fsh
Normal file
29
assets/minecraft/shaders/program/bits.fsh
Normal file
@@ -0,0 +1,29 @@
|
||||
#version 150
|
||||
|
||||
uniform sampler2D DiffuseSampler;
|
||||
|
||||
in vec2 texCoord;
|
||||
in vec2 oneTexel;
|
||||
|
||||
uniform vec2 InSize;
|
||||
|
||||
uniform float Resolution;
|
||||
uniform float Saturation;
|
||||
uniform float MosaicSize;
|
||||
|
||||
out vec4 fragColor;
|
||||
|
||||
void main() {
|
||||
vec2 mosaicInSize = InSize / MosaicSize;
|
||||
vec2 fractPix = fract(texCoord * mosaicInSize) / mosaicInSize;
|
||||
|
||||
vec4 baseTexel = texture(DiffuseSampler, texCoord - fractPix);
|
||||
|
||||
vec3 fractTexel = baseTexel.rgb - fract(baseTexel.rgb * Resolution) / Resolution;
|
||||
float luma = dot(fractTexel, vec3(0.3, 0.59, 0.11));
|
||||
vec3 chroma = (fractTexel - luma) * Saturation;
|
||||
baseTexel.rgb = luma + chroma;
|
||||
baseTexel.a = 1.0;
|
||||
|
||||
fragColor = baseTexel;
|
||||
}
|
||||
Reference in New Issue
Block a user