Index: src/gpu/GrBitmapTextContext.cpp |
diff --git a/src/gpu/GrBitmapTextContext.cpp b/src/gpu/GrBitmapTextContext.cpp |
index 732a514c4fb2ef38983d69059afa68328ffb0b2b..504aba2555d0a6fa8372c0e1044e6a633560301d 100755 |
--- a/src/gpu/GrBitmapTextContext.cpp |
+++ b/src/gpu/GrBitmapTextContext.cpp |
@@ -421,13 +421,10 @@ void GrBitmapTextContext::appendGlyph(GrGlyph::PackedID packed, |
SkFixed height = glyph->fBounds.height(); |
// check if we clipped out |
- if (true || NULL == glyph->fPlot) { |
- int x = vx >> 16; |
- int y = vy >> 16; |
- if (fClipRect.quickReject(x, y, x + width, y + height)) { |
-// SkCLZ(3); // so we can set a break-point in the debugger |
- return; |
- } |
+ int x = vx >> 16; |
+ int y = vy >> 16; |
+ if (fClipRect.quickReject(x, y, x + width, y + height)) { |
+ return; |
} |
// If the glyph is too large we fall back to paths |