aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkBlitter_4444.cpp
diff options
context:
space:
mode:
authorGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-10-30 21:37:10 +0000
committerGravatar reed@android.com <reed@android.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2009-10-30 21:37:10 +0000
commite16a9223fd2a09fb7ba72e20c957bef99cbef4fc (patch)
treee85fe93452c85e73256ca1626f0c56042fd22b54 /src/core/SkBlitter_4444.cpp
parent4aa910ea938ddcfe1a480884a51aefe14d74ca89 (diff)
disable bogus assert (at least until I can investigate more)
git-svn-id: http://skia.googlecode.com/svn/trunk@414 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkBlitter_4444.cpp')
-rw-r--r--src/core/SkBlitter_4444.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/SkBlitter_4444.cpp b/src/core/SkBlitter_4444.cpp
index 736f8c3c2d..81bbc48cbb 100644
--- a/src/core/SkBlitter_4444.cpp
+++ b/src/core/SkBlitter_4444.cpp
@@ -82,9 +82,12 @@ SkARGB4444_Blitter::SkARGB4444_Blitter(const SkBitmap& device, const SkPaint& pa
fRawColor16Other = fRawColor16;
}
+#if 0 /// don't think this assertion is true, but need it be?
+
// our dithered color will be the same or more opaque than the original
// so use dithered to compute our scale
SkASSERT(SkGetPackedA4444(fPMColor16Other) >= SkGetPackedA4444(fPMColor16));
+#endif
fScale16 = SkAlpha15To16(SkGetPackedA4444(fPMColor16Other));
if (16 == fScale16) {