HomeSort by relevance Sort by last modified time
    Searched refs:PainterOpenVG (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.h 34 class PainterOpenVG;
140 void setActivePainter(PainterOpenVG*);
141 PainterOpenVG* activePainter();
144 PainterOpenVG* m_activePainter;
145 static PainterOpenVG* s_currentPainter; // global currently active painter
PainterOpenVG.h 44 class PainterOpenVG {
45 WTF_MAKE_NONCOPYABLE(PainterOpenVG);
53 CreateNewStateWithPaintStateOnly // internal usage only, do not use outside PainterOpenVG
60 PainterOpenVG();
61 PainterOpenVG(SurfaceOpenVG*);
62 ~PainterOpenVG();
118 void clipPath(const Path&, PainterOpenVG::ClipOperation, WindRule clipRule = RULE_NONZERO);
122 void save(PainterOpenVG::SaveMode saveMode = CreateNewState);
PainterOpenVG.cpp 21 #include "PainterOpenVG.h"
197 void applyState(PainterOpenVG* painter)
231 void applyBlending(PainterOpenVG* painter)
310 void applyTransformation(PainterOpenVG* painter)
381 void saveMaskIfNecessary(PainterOpenVG* painter)
399 PainterOpenVG::PainterOpenVG()
405 PainterOpenVG::PainterOpenVG(SurfaceOpenVG* surface)
413 PainterOpenVG::~PainterOpenVG(
    [all...]
GraphicsContextOpenVG.cpp 26 #include "PainterOpenVG.h"
42 // typedef'ing doesn't work, let's inherit from PainterOpenVG instead
43 class GraphicsContextPlatformPrivate : public PainterOpenVG {
46 : PainterOpenVG(surface)
202 m_data->clipPath(path, PainterOpenVG::IntersectClip, clipRule);
380 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
393 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
427 m_data->clipPath(path, PainterOpenVG::SubtractClip, m_state.fillRule);
450 m_data->clipPath(path, PainterOpenVG::IntersectClip, m_state.fillRule);
SurfaceOpenVG.cpp 24 #include "PainterOpenVG.h"
35 PainterOpenVG* SurfaceOpenVG::s_currentPainter = 0;
198 s_currentPainter->save(PainterOpenVG::KeepCurrentState);
231 s_currentPainter->save(PainterOpenVG::KeepCurrentState);
251 void SurfaceOpenVG::setActivePainter(PainterOpenVG* painter)
265 PainterOpenVG* SurfaceOpenVG::activePainter()
PathOpenVG.cpp 27 #include "PainterOpenVG.h"
453 PainterOpenVG::transformPath(dst->vgPath(), m_path->vgPath(), transformation);

Completed in 191 milliseconds