UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

41 lines (38 loc) 1.23 kB
import { ExtensionType } from '../extensions/Extensions.mjs'; import { BlendModeFilter } from '../filters/blend-modes/BlendModeFilter.mjs'; "use strict"; class DifferenceBlend extends BlendModeFilter { constructor() { super({ gl: { functions: ` vec3 blendDifference(vec3 base, vec3 blend, float opacity) { return (abs(blend - base) * opacity + base * (1.0 - opacity)); } `, main: ` finalColor = vec4(blendDifference(back.rgb, front.rgb,front.a), blendedAlpha) * uBlend; ` }, gpu: { functions: ` fn blendDifference(base:vec3<f32>, blend:vec3<f32>, opacity:f32) -> vec3<f32> { return (abs(blend - base) * opacity + base * (1.0 - opacity)); } `, main: ` out = vec4<f32>(blendDifference(back.rgb, front.rgb, front.a), blendedAlpha) * blendUniforms.uBlend; ` } }); } } /** @ignore */ DifferenceBlend.extension = { name: "difference", type: ExtensionType.BlendMode }; export { DifferenceBlend }; //# sourceMappingURL=DifferenceBlend.mjs.map