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

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContext.h 181 SkColor strokeColor;
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 311 Color strokeColor = context->strokeColor();
312 strokeColor.getRGBA(red, green, blue, alpha);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 169 , strokeColor(Color::black)
205 Color strokeColor;
241 Color strokeColor() const;
GraphicsContext.cpp 129 m_state.strokeColor = color;
192 Color GraphicsContext::strokeColor() const
194 return m_state.strokeColor;
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 118 Color strokeColor;
185 strokeColor = other->strokeColor;
202 setVGSolidColor(VG_STROKE_PATH, strokeColor);
373 && (strokeStyle == NoStroke || !strokeColor.alpha()));
626 Color PainterOpenVG::strokeColor() const
629 return m_state->strokeColor;
637 m_state->strokeColor = color;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 107 Color strokeColor = colorWithOverrideAlpha(context->strokeColor().rgb(), context->strokeColor().alpha() / 255.f * state.globalAlpha);
108 setSourceRGBAFromColor(cr, strokeColor);
269 setSourceRGBAFromColor(cr, strokeColor());
317 setSourceRGBAFromColor(cr, strokeColor());
325 fillRectSourceOver(cr, FloatRect(p1.x() - width/2, p1.y() - width, width, width), strokeColor());
326 fillRectSourceOver(cr, FloatRect(p2.x() - width/2, p2.y(), width, width), strokeColor());
328 fillRectSourceOver(cr, FloatRect(p1.x() - width, p1.y() - width/2, width, width), strokeColor());
329 fillRectSourceOver(cr, FloatRect(p2.x(), p2.y() - width/2, width, width), strokeColor());
    [all...]

Completed in 237 milliseconds