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

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 41 , strokeColor(Color::black)
60 Color strokeColor;
GraphicsContext.cpp 125 m_common->state.strokeColor = color;
167 Color GraphicsContext::strokeColor() const
169 return m_common->state.strokeColor;
  /external/webkit/WebCore/platform/graphics/cairo/
FontCairo.cpp 177 Color strokeColor = context->strokeColor();
179 strokeColor.getRGBA(red, green, blue, alpha);
GraphicsContextCairo.cpp 100 Color strokeColor = colorWithOverrideAlpha(context->strokeColor().rgb(), context->strokeColor().alpha() / 255.f * gcp->state.globalAlpha);
101 setColor(cr, strokeColor);
249 setColor(cr, strokeColor());
297 setColor(cr, strokeColor());
305 fillRectSourceOver(cr, FloatRect(p1.x() - width/2, p1.y() - width, width, width), strokeColor());
306 fillRectSourceOver(cr, FloatRect(p2.x() - width/2, p2.y(), width, width), strokeColor());
308 fillRectSourceOver(cr, FloatRect(p1.x() - width, p1.y() - width/2, width, width), strokeColor());
309 fillRectSourceOver(cr, FloatRect(p2.x(), p2.y() - width/2, width, width), strokeColor());
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 252 Color strokeColor = context->strokeColor();
253 strokeColor.getRGBA(red, green, blue, alpha);
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 115 Color strokeColor;
156 strokeColor = other->strokeColor;
172 setVGSolidColor(VG_STROKE_PATH, strokeColor);
333 && (strokeStyle == NoStroke || !strokeColor.alpha()));
548 Color PainterOpenVG::strokeColor() const
551 return m_state->strokeColor;
559 m_state->strokeColor = color;

Completed in 36 milliseconds