Pixel-Composer/shaders/sh_grid_noise/sh_grid_noise.fsh

71 lines
2.1 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
//
// Simple passthrough fragment shader
//
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
2022-09-21 06:09:40 +02:00
uniform vec2 dimension;
2022-01-13 05:24:03 +01:00
uniform vec2 position;
uniform vec2 scale;
uniform float seed;
uniform float shift;
2023-01-01 02:06:02 +01:00
uniform int shiftAxis;
2022-09-21 06:09:40 +02:00
uniform int useSampler;
2023-04-07 21:25:27 +02:00
uniform int colored;
uniform vec2 colorRanR;
uniform vec2 colorRanG;
uniform vec2 colorRanB;
vec3 hsv2rgb(vec3 c) {
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
}
2023-01-09 03:14:20 +01:00
float randomSeed (in vec2 st, float _seed) {
2023-02-28 09:43:01 +01:00
return fract(sin(dot(st.xy + vec2(5.0654, 9.684), vec2(12.9898, 78.233))) * (43758.5453123 + _seed));
2023-01-09 03:14:20 +01:00
}
2022-01-13 05:24:03 +01:00
float random (in vec2 st) {
2023-01-09 03:14:20 +01:00
return mix(randomSeed(st, floor(seed)), randomSeed(st, floor(seed) + 1.), fract(seed));
2022-01-13 05:24:03 +01:00
}
void main() {
2022-09-21 06:09:40 +02:00
vec2 st = v_vTexcoord - position / dimension;
2022-01-13 05:24:03 +01:00
vec2 pos = vec2(st * scale);
2023-01-01 02:06:02 +01:00
2023-02-19 13:49:20 +01:00
if(shiftAxis == 0) {
//pos.x += random(vec2(0., floor(pos.y)));
if(mod(pos.y, 2.) > 1.)
pos.x += shift;
} else if(shiftAxis == 1) {
//pos.y += random(vec2(0., floor(pos.x)));
if(mod(pos.x, 2.) > 1.)
pos.y += shift;
}
2022-01-13 05:24:03 +01:00
2023-01-09 03:14:20 +01:00
if(useSampler == 0) {
2023-04-07 21:25:27 +02:00
vec2 n = floor(pos);
if(colored == 0) {
gl_FragColor = vec4(vec3(random(n)), 1.0);
} else if(colored == 1) {
float randR = colorRanR[0] + random(n) * (colorRanR[1] - colorRanR[0]);
float randG = colorRanG[0] + random(n + vec2(1.7227, 4.55529)) * (colorRanG[1] - colorRanG[0]);
float randB = colorRanB[0] + random(n + vec2(6.9950, 6.82063)) * (colorRanB[1] - colorRanB[0]);
gl_FragColor = vec4(randR, randG, randB, 1.0);
} else if(colored == 2) {
float randH = colorRanR[0] + random(n) * (colorRanR[1] - colorRanR[0]);
float randS = colorRanG[0] + random(n + vec2(1.7227, 4.55529)) * (colorRanG[1] - colorRanG[0]);
float randV = colorRanB[0] + random(n + vec2(6.9950, 6.82063)) * (colorRanB[1] - colorRanB[0]);
gl_FragColor = vec4(hsv2rgb(vec3(randH, randS, randV)), 1.0);
}
2023-01-09 03:14:20 +01:00
} else {
2022-09-21 06:09:40 +02:00
vec2 samPos = floor(pos) / scale + 0.5 / scale;
gl_FragColor = texture2D( gm_BaseTexture, samPos );
}
2022-01-13 05:24:03 +01:00
}