diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-11-02 19:57:21 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2011-11-02 19:57:21 +0000 |
commit | c69809745e6496564639e42ef998ad39adf7dfb8 (patch) | |
tree | 970a42d960ca25434d580932a3926d975a76b9be /include/pdf | |
parent | ace7bd5623354ffabbd224d5b76550bab159c296 (diff) |
Recommit r2584 with gpu pass of the new ReadPixels test disabled in fixed pt (gpu code doesn't work in general in fixed pt).
git-svn-id: http://skia.googlecode.com/svn/trunk@2586 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/pdf')
-rw-r--r-- | include/pdf/SkPDFDevice.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/pdf/SkPDFDevice.h b/include/pdf/SkPDFDevice.h index 9e985e7702..b25e39a7d0 100644 --- a/include/pdf/SkPDFDevice.h +++ b/include/pdf/SkPDFDevice.h @@ -66,10 +66,6 @@ public: virtual void clear(SkColor color); - virtual bool readPixels(const SkIRect& srcRect, SkBitmap* bitmap) { - return false; - } - /** These are called inside the per-device-layer loop for each draw call. When these are called, we have already applied any saveLayer operations, and are handling any looping from the paint, and any effects from the @@ -160,6 +156,13 @@ public: const SkPDFGlyphSetMap& getFontGlyphUsage() const { return *(fFontGlyphUsage.get()); } + +protected: + virtual bool onReadPixels(const SkBitmap* bitmap, + int x, int y) SK_OVERRIDE { + return false; + } + private: // TODO(vandebo): push most of SkPDFDevice's state into a core object in |