mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 22:52:14 +00:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
|
/**
|
||
|
* Brightens the backdrop color to reflect the source color.
|
||
|
* Painting with black produces no change.
|
||
|
*/
|
||
|
var ColorDodge = function (a, b)
|
||
|
{
|
||
|
return (b === 255) ? b : Math.min(255, ((a << 8) / (255 - b)));
|
||
|
};
|
||
|
|
||
|
module.exports = ColorDodge;
|