Searched defs:strokeColor (Results 1 - 8 of 8) sorted by relevance

/external/webkit/WebCore/platform/graphics/
H A DGraphicsContextPrivate.h41 , strokeColor(Color::black)
60 Color strokeColor; member in struct:WebCore::GraphicsContextState
H A DGraphicsContext.cpp125 m_common->state.strokeColor = color;
167 Color GraphicsContext::strokeColor() const function in class:WebCore::GraphicsContext
169 return m_common->state.strokeColor;
/external/webkit/WebCore/platform/graphics/cairo/
H A DFontCairo.cpp177 Color strokeColor = context->strokeColor(); local
179 strokeColor.getRGBA(red, green, blue, alpha);
H A DGraphicsContextCairo.cpp100 Color strokeColor = colorWithOverrideAlpha(context->strokeColor().rgb(), context->strokeColor().alpha() / 255.f * gcp->state.globalAlpha); local
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/
H A DFontGtk.cpp252 Color strokeColor = context->strokeColor(); local
253 strokeColor.getRGBA(red, green, blue, alpha);
/external/webkit/WebCore/platform/graphics/openvg/
H A DPainterOpenVG.cpp115 Color strokeColor; member in struct:WebCore::PlatformPainterState
156 strokeColor = other->strokeColor;
172 setVGSolidColor(VG_STROKE_PATH, strokeColor);
333 && (strokeStyle == NoStroke || !strokeColor.alpha()));
548 Color PainterOpenVG::strokeColor() const function in class:WebCore::PainterOpenVG
551 return m_state->strokeColor;
559 m_state->strokeColor = color;
/external/webkit/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp461 void PlatformContextSkia::setStrokeColor(SkColor strokeColor) argument
463 m_state->m_strokeColor = strokeColor;
/external/webkit/WebCore/rendering/
H A DInlineTextBox.cpp236 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace) argument
251 if (strokeColor != context->strokeColor())
252 context->setStrokeColor(strokeColor, colorSpace);

Completed in 879 milliseconds