Near the bottom of the page you list the following equations:
blue = src.green * src.alpha + dst.green * (1 - src.alpha)
green = src.blue * src.alpha + dst.blue * (1 - src.alpha)
shouldn't is be:
blue = src.blue * src.alpha + dst.blue * (1 - src.alpha)
green = src.green * src.alpha + dst.green * (1 - src.alpha)
Original issue reported on code.google.com by SmithSco...@gmail.com on 23 Jun 2011 at 4:22
Original issue reported on code.google.com by
SmithSco...@gmail.com
on 23 Jun 2011 at 4:22