HomeSort by relevance Sort by last modified time
    Searched refs:strokeThickness (Results 1 - 24 of 24) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContext.cpp 98 , strokeThickness(0) // Same as default in GraphicsContextPrivate.h
116 , strokeThickness(other.strokeThickness)
379 m_state->strokeThickness = f;
434 float width = m_state->strokeThickness;
PlatformGraphicsContextSkia.cpp 434 setrectForUnderline(&r, m_state->strokeThickness, pt, 0, width);
448 setrectForUnderline(&r, m_state->strokeThickness, pt, 0, width);
577 paint.setStrokeWidth(SkFloatToScalar(m_state->strokeThickness));
PlatformGraphicsContext.h 173 float strokeThickness;
PlatformGraphicsContextRecording.cpp 846 float width = m_state->strokeThickness;
854 FloatRect bounds(pt.x(), pt.y(), width, m_state->strokeThickness);
861 FloatRect bounds(pt.x(), pt.y(), width, m_state->strokeThickness);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 201 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
214 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
224 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
233 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
248 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
345 m_data->context->SetPen(wxPen(strokeColor(), strokeThickness(), wxSOLID));
462 m_data->context->SetPen(wxPen(color, strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 119 float strokeThickness;
139 , strokeThickness(0.0)
186 strokeThickness = other->strokeThickness;
204 vgSetf(VG_STROKE_LINE_WIDTH, strokeThickness);
555 float PainterOpenVG::strokeThickness() const
558 return m_state->strokeThickness;
566 m_state->strokeThickness = thickness;
939 if (fmod(m_state->strokeThickness + 0.5, 2.0) < 1.0)
    [all...]
PainterOpenVG.h 78 float strokeThickness() const;
GraphicsContextOpenVG.cpp 321 float oldThickness = m_data->strokeThickness();
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FontCairo.cpp 147 if (context->textDrawingMode() & TextModeStroke && context->strokeThickness() < 2 * offset) {
171 cairo_set_line_width(cr, context->strokeThickness());
GraphicsContextCairo.cpp 293 float width = strokeThickness();
393 cairo_set_line_width(cr, strokeThickness());
427 float width = strokeThickness();
507 cairo_set_line_width(cr, strokeThickness());
817 void GraphicsContext::setPlatformStrokeThickness(float strokeThickness)
822 cairo_set_line_width(platformContext()->cr(), strokeThickness);
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 39 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
RenderMediaControlsChromium.cpp 221 float originalThickness = context->strokeThickness();
InlineTextBox.cpp 320 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
323 if (strokeThickness > 0) {
337 if (strokeThickness != context->strokeThickness())
338 context->setStrokeThickness(strokeThickness);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 163 : strokeThickness(0)
197 float strokeThickness;
237 float strokeThickness() const;
GraphicsContext.cpp 117 m_state.strokeThickness = thickness;
182 float GraphicsContext::strokeThickness() const
184 return m_state.strokeThickness;
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontQt.cpp 101 textStrokePen = QPen(brush, ctx->strokeThickness());
105 textStrokePen = QPen(brush, ctx->strokeThickness());
107 textStrokePen = QPen(QColor(ctx->strokeColor()), ctx->strokeThickness());
GraphicsContextQt.cpp 348 float width = strokeThickness();
883 float strokeWidth = strokeThickness();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 193 float width = strokeThickness();
316 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f)
345 float width = strokeThickness();
613 float lineWidth = strokeThickness();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 652 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
683 lineRect.setHeight(lineRect.height() + strokeThickness());
691 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
727 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
798 OwnPtr<HPEN> pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
909 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 575 int width = roundf(strokeThickness());
700 int thickness = SkMax32(static_cast<int>(strokeThickness()), 1);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 315 cairo_set_line_width(cr, context->strokeThickness());
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineTextBox.cpp 365 context->setStrokeThickness(context->strokeThickness() * scalingFactor);
  /external/webkit/Source/WebCore/svg/
SVGFont.cpp 552 context->setStrokeThickness(context->strokeThickness() * textRenderer->scalingFactor());
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 215 milliseconds