Index: include/gpu/SkGpuDevice.h |
diff --git a/include/gpu/SkGpuDevice.h b/include/gpu/SkGpuDevice.h |
index 55452271296d7fa2458067f9da619407fee32891..419013f4ae5009252c62e427eb6f6b242fafd063 100644 |
--- a/include/gpu/SkGpuDevice.h |
+++ b/include/gpu/SkGpuDevice.h |
@@ -152,7 +152,9 @@ private: |
virtual SkSurface* newSurface(const SkImageInfo&) SK_OVERRIDE; |
virtual SkImageFilter::Cache* getImageFilterCache() SK_OVERRIDE; |
- virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return true; } |
+ |
robertphillips
2014/12/02 13:26:45
In ToT Skia forceConservativeRasterClip returns tr
|
+ // temporarily change the return to false, until we understand the issues with filters and persp |
+ virtual bool forceConservativeRasterClip() const SK_OVERRIDE { return false; } |
// sets the render target, clip, and matrix on GrContext. Use forceIdenity to override |
// SkDraw's matrix and draw in device coords. |