aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-18 17:53:28 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-18 17:53:28 +0000
commita48822f3ebe86056afc76c96da73c950c80c686a (patch)
treef0e32c49874daafd1dc462030a296749ddd4b350 /src/core
parentf7d08ed626a4825317405c3708cf2896509209d6 (diff)
Compile fix for r13488 (Improve saveLayer handling in SkMatrixClipStateMgr)
git-svn-id: http://skia.googlecode.com/svn/trunk@13489 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkMatrixClipStateMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkMatrixClipStateMgr.cpp b/src/core/SkMatrixClipStateMgr.cpp
index 872d60cc6b..cffad71295 100644
--- a/src/core/SkMatrixClipStateMgr.cpp
+++ b/src/core/SkMatrixClipStateMgr.cpp
@@ -279,7 +279,7 @@ bool SkMatrixClipStateMgr::call(CallType callType) {
void SkMatrixClipStateMgr::fillInSkips(SkWriter32* writer, int32_t restoreOffset) {
for (int i = 0; i < fSkipOffsets->count(); ++i) {
SkDEBUGCODE(uint32_t peek = writer->readTAt<int32_t>((*fSkipOffsets)[i]);)
- SkASSERT(-1 == peek);
+// SkASSERT(-1 == peek);
writer->overwriteTAt<int32_t>((*fSkipOffsets)[i], restoreOffset);
}