ktongue's picture
download
raw
929 Bytes
"use strict";
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const RGBShiftShader = {
uniforms: {
tDiffuse: { value: null },
amount: { value: 5e-3 },
angle: { value: 0 }
},
vertexShader: (
/* glsl */
`
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}
`
),
fragmentShader: (
/* glsl */
`
uniform sampler2D tDiffuse;
uniform float amount;
uniform float angle;
varying vec2 vUv;
void main() {
vec2 offset = amount * vec2( cos(angle), sin(angle));
vec4 cr = texture2D(tDiffuse, vUv + offset);
vec4 cga = texture2D(tDiffuse, vUv);
vec4 cb = texture2D(tDiffuse, vUv - offset);
gl_FragColor = vec4(cr.r, cga.g, cb.b, cga.a);
}
`
)
};
exports.RGBShiftShader = RGBShiftShader;
//# sourceMappingURL=RGBShiftShader.cjs.map

Xet Storage Details

Size:
929 Bytes
·
Xet hash:
0411ee98343758b1ff626219e1a72927aa5a0dd92e0dc4f8d224ad15ad59c4a4

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.