HomeSort by relevance Sort by last modified time
    Searched defs:SkPDFGraphicState (Results 1 - 2 of 2) sorted by null

  /external/skia/src/pdf/
SkPDFGraphicState.h 21 /** \class SkPDFGraphicState
26 class SkPDFGraphicState : public SkPDFObject {
27 SK_DECLARE_INST_COUNT(SkPDFGraphicState)
47 static SkPDFGraphicState* GetGraphicStateForPaint(SkPDFCanon* canon,
73 bool operator==(const SkPDFGraphicState& rhs) const {
86 SkPDFGraphicState(const SkPaint&);
SkPDFGraphicState.cpp 12 #include "SkPDFGraphicState.h"
104 SkPDFGraphicState::SkPDFGraphicState(const SkPaint& p)
113 SkPDFGraphicState* SkPDFGraphicState::GetGraphicStateForPaint(
116 SkPDFGraphicState key(paint);
117 if (const SkPDFGraphicState* canonGS = canon->findGraphicState(key)) {
118 // The returned SkPDFGraphicState must be made non-const,
122 return SkRef(const_cast<SkPDFGraphicState*>(canonGS));
124 SkPDFGraphicState* pdfGraphicState = new SkPDFGraphicState(paint)
    [all...]

Completed in 46 milliseconds