"fix" for r4034 issues

git-svn-id: http://skia.googlecode.com/svn/trunk@4035 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
robertphillips@google.com 2012-05-23 12:02:21 +00:00
parent 49d9fd5fdb
commit 87baf8985a

View File

@ -82,7 +82,7 @@ public:
void reset() {
if (fStack.empty()) {
GrAssert(false);
// GrAssert(false);
return;
}
@ -102,7 +102,7 @@ public:
}
void pop() {
GrAssert(!fStack.empty());
//GrAssert(!fStack.empty());
if (!fStack.empty()) {
GrClipStackFrame* back = (GrClipStackFrame*) fStack.back();