HomeSort by relevance Sort by last modified time
    Searched refs:strokeColor (Results 1 - 22 of 22) 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;
GraphicsContext.h 168 Color strokeColor() const;
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 123 setPlatformStrokeColor(strokeColor(), DeviceColorSpace);
203 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
216 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
226 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
235 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
250 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
332 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), wxSOLID));
461 m_data->context->SetPen(wxPen(strokeColor(), thickness, strokeStyleToWxPenStyle(strokeStyle())));
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 79 Color strokeColor() const;
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;
GraphicsContextOpenVG.cpp 244 Color oldStrokeColor = m_data->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/cg/
GraphicsContextCG.cpp 153 setPlatformStrokeColor(strokeColor(), strokeColorSpace());
202 if (oldFillColor != strokeColor())
203 setCGFillColor(context, strokeColor(), strokeColorSpace());
211 if (oldFillColor != strokeColor())
280 setCGFillColor(context, strokeColor(), strokeColorSpace()); // The save/restore make it safe to mutate the fill color here without setting it back to the old color.
501 bool shouldStroke = state.strokePattern || (state.strokeStyle != NoStroke && state.strokeColor.alpha());
    [all...]
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextCairoWin.cpp 83 setPlatformStrokeColor(strokeColor(), strokeColorSpace());
GraphicsContextCGWin.cpp 74 setPlatformStrokeColor(strokeColor(), DeviceColorSpace);
  /external/webkit/WebCore/rendering/
InlineTextBox.h 37 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
RenderMediaControlsChromium.cpp 173 Color originalColor = context->strokeColor();
202 Color originalColor = context->strokeColor();
InlineTextBox.cpp 236 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
251 if (strokeColor != context->strokeColor())
252 context->setStrokeColor(strokeColor, colorSpace);
    [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/qt/
FontQt.cpp 97 p->setPen(QPen(QColor(ctx->strokeColor()), ctx->strokeThickness()));
GraphicsContextQt.cpp 264 setPlatformStrokeColor(strokeColor(), DeviceColorSpace);
336 Color color = strokeColor();
446 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f || !strokeColor().alpha())
565 if (m_common->state.strokePattern || m_common->state.strokeGradient || strokeColor().alpha()) {
589 if (strokeColor().alpha())
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 657 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
685 if (!m_data->m_opacity || paintingDisabled() || strokeStyle() == NoStroke || !strokeColor().alpha())
697 TransparentLayerDC transparentDC(m_data, lineRect, 0, strokeColor().alpha());
704 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
740 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
817 HGDIOBJ pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
929 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontLinux.cpp 126 paint.setColor(gc->strokeColor().rgb());
503 setupForTextPainting(&strokePaint, gc->strokeColor().rgb());
  /external/webkit/WebCore/platform/graphics/skia/
PlatformContextSkia.cpp 461 void PlatformContextSkia::setStrokeColor(SkColor strokeColor)
463 m_state->m_strokeColor = strokeColor;
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 272 // paint->setColor(mState->applyAlpha(mCG->strokeColor().rgb()));
423 if (strokeStyle() != NoStroke && strokeColor().alpha()) {
534 paint.setColor(this->strokeColor().rgb());
    [all...]

Completed in 246 milliseconds