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

/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.h172 SkColor strokeColor; member in class:WebCore::PlatformGraphicsContext::State
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext.h169 , strokeColor(Color::black)
205 Color strokeColor; member in struct:WebCore::GraphicsContextState
241 Color strokeColor() const;
H A DGraphicsContext.cpp129 m_state.strokeColor = color;
192 Color GraphicsContext::strokeColor() const function in class:WebCore::GraphicsContext
194 return m_state.strokeColor;
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp311 Color strokeColor = context->strokeColor(); local
312 strokeColor.getRGBA(red, green, blue, alpha);
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPainterOpenVG.cpp118 Color strokeColor; member in struct:WebCore::PlatformPainterState
185 strokeColor = other->strokeColor;
202 setVGSolidColor(VG_STROKE_PATH, strokeColor);
373 && (strokeStyle == NoStroke || !strokeColor.alpha()));
626 Color PainterOpenVG::strokeColor() const function in class:WebCore::PainterOpenVG
629 return m_state->strokeColor;
637 m_state->strokeColor = color;
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp498 void PlatformContextSkia::setStrokeColor(SkColor strokeColor) argument
500 m_state->m_strokeColor = strokeColor;
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DGraphicsContextCairo.cpp107 Color strokeColor = colorWithOverrideAlpha(context->strokeColor().rgb(), context->strokeColor().alpha() / 255.f * state.globalAlpha); local
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...]
/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.cpp320 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace) argument
335 if (strokeColor != context->strokeColor())
336 context->setStrokeColor(strokeColor, colorSpace);

Completed in 179 milliseconds