65 lines
2.0 KiB
JavaScript
65 lines
2.0 KiB
JavaScript
'use strict';
|
|
|
|
var Extensions = require('../extensions/Extensions.js');
|
|
var BlendModeFilter = require('../filters/blend-modes/BlendModeFilter.js');
|
|
|
|
"use strict";
|
|
class PinLightBlend extends BlendModeFilter.BlendModeFilter {
|
|
constructor() {
|
|
super({
|
|
gl: {
|
|
functions: `
|
|
float pinLight(float base, float blend)
|
|
{
|
|
return (blend <= 0.5) ? min(base, 2.0 * blend) : max(base, 2.0 * (blend - 0.5));
|
|
}
|
|
|
|
vec3 blendPinLight(vec3 base, vec3 blend, float opacity)
|
|
{
|
|
vec3 blended = vec3(
|
|
pinLight(base.r, blend.r),
|
|
pinLight(base.g, blend.g),
|
|
pinLight(base.b, blend.b)
|
|
);
|
|
|
|
return (blended * opacity + base * (1.0 - opacity));
|
|
}
|
|
`,
|
|
main: `
|
|
finalColor = vec4(blendPinLight(back.rgb, front.rgb, front.a), blendedAlpha) * uBlend;
|
|
`
|
|
},
|
|
gpu: {
|
|
functions: `
|
|
fn pinLight(base: f32, blend: f32) -> f32
|
|
{
|
|
return select(max(base,2.0*(blend-0.5)), min(base,2.0*blend), blend <= 0.5);
|
|
}
|
|
|
|
fn blendPinLight(base:vec3<f32>, blend:vec3<f32>, opacity:f32) -> vec3<f32>
|
|
{
|
|
let blended = vec3<f32>(
|
|
pinLight(base.r, blend.r),
|
|
pinLight(base.g, blend.g),
|
|
pinLight(base.b, blend.b)
|
|
);
|
|
|
|
return (blended * opacity + base * (1.0 - opacity));
|
|
}
|
|
`,
|
|
main: `
|
|
out = vec4<f32>(blendPinLight(back.rgb, front.rgb, front.a), blendedAlpha) * blendUniforms.uBlend;
|
|
`
|
|
}
|
|
});
|
|
}
|
|
}
|
|
/** @ignore */
|
|
PinLightBlend.extension = {
|
|
name: "pin-light",
|
|
type: Extensions.ExtensionType.BlendMode
|
|
};
|
|
|
|
exports.PinLightBlend = PinLightBlend;
|
|
//# sourceMappingURL=PinLightBlend.js.map
|