aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pdf/SkPDFGraphicState.h
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-02-20 07:21:05 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-02-20 07:21:05 -0800
commit792c80f5a7b66e75d42664ccb298f31962c6654c (patch)
treefc98395a0a8b9860677b9465ca2c5b662f89ee78 /src/pdf/SkPDFGraphicState.h
parentd08ea5fdae990ee7829e3755abddfab9740eab99 (diff)
PDF: Now threadsafe!
The PDF canvas is now just as threadsafe as any other Skia canvas. DM updated to thread PDF tests. SkDocument_PDF now owns SkPDFCanon, and pointers to that canon are passed around to all classes that need access to the canon. BUG=skia:2683 Review URL: https://codereview.chromium.org/944643002
Diffstat (limited to 'src/pdf/SkPDFGraphicState.h')
-rw-r--r--src/pdf/SkPDFGraphicState.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pdf/SkPDFGraphicState.h b/src/pdf/SkPDFGraphicState.h
index a759d56b9f..b26e4a00cb 100644
--- a/src/pdf/SkPDFGraphicState.h
+++ b/src/pdf/SkPDFGraphicState.h
@@ -47,7 +47,8 @@ public:
* other references.
* @param paint The SkPaint to emulate.
*/
- static SkPDFGraphicState* GetGraphicStateForPaint(const SkPaint& paint);
+ static SkPDFGraphicState* GetGraphicStateForPaint(SkPDFCanon* canon,
+ const SkPaint& paint);
/** Make a graphic state that only sets the passed soft mask. The
* reference count of the object is incremented and it is the caller's
@@ -74,12 +75,12 @@ public:
static SkPDFGraphicState* CreateNoSMaskGraphicState();
private:
+ SkPDFCanon* const fCanon;
const SkPaint fPaint;
bool fPopulated;
- bool fSMask;
SkPDFGraphicState();
- explicit SkPDFGraphicState(const SkPaint& paint);
+ SkPDFGraphicState(SkPDFCanon* canon, const SkPaint& paint);
void populateDict();