Remove assert which is failing.
Unreviewed.
git-svn-id: http://skia.googlecode.com/svn/trunk@10165 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/images/SkImageDecoder_libpng.cpp b/src/images/SkImageDecoder_libpng.cpp
index 4c44b91..85e803b 100644
--- a/src/images/SkImageDecoder_libpng.cpp
+++ b/src/images/SkImageDecoder_libpng.cpp
@@ -522,7 +522,8 @@
SrcDepth srcDepth = k32Bit_SrcDepth;
if (PNG_COLOR_TYPE_GRAY == colorType) {
srcDepth = k8BitGray_SrcDepth;
- SkASSERT(!*hasAlphap);
+ // Remove this assert, which fails on desk_pokemonwiki.skp
+ //SkASSERT(!*hasAlphap);
}
*configp = this->getPrefConfig(srcDepth, *hasAlphap);