add SK_USE_OLD_255_TO_256 define to disable alpha+1 change to SkAlpha255To256

git-svn-id: http://skia.googlecode.com/svn/trunk@171 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@android.com 2009-05-08 13:10:38 +00:00
parent b9890c133f
commit f76b1b6566

View File

@ -33,7 +33,7 @@
*/
static inline unsigned SkAlpha255To256(U8CPU alpha) {
SkASSERT(SkToU8(alpha) == alpha);
#if 1
#ifndef SK_USE_OLD_255_TO_256
// this one assues that blending on top of an opaque dst keeps it that way
// even though it is less accurate than a+(a>>7) for non-opaque dsts
return alpha + 1;