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

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 40 , strokeThickness(0)
59 float strokeThickness;
GraphicsContext.cpp 113 m_common->state.strokeThickness = thickness;
157 float GraphicsContext::strokeThickness() const
159 return m_common->state.strokeThickness;
GraphicsContext.h 164 float strokeThickness() const;
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.h 69 float strokeThickness() const;
PainterOpenVG.cpp 116 float strokeThickness;
131 , strokeThickness(0.0)
157 strokeThickness = other->strokeThickness;
174 vgSetf(VG_STROKE_LINE_WIDTH, strokeThickness);
477 float PainterOpenVG::strokeThickness() const
480 return m_state->strokeThickness;
488 m_state->strokeThickness = thickness;
794 if (fmod(m_state->strokeThickness + 0.5, 2.0) < 1.0)
GraphicsContextOpenVG.cpp 348 float oldThickness = m_data->strokeThickness();
  /external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp 92 p->setPen(QPen(brush, ctx->strokeThickness()));
95 p->setPen(QPen(QBrush(ctx->strokePattern()->createPlatformPattern(affine)), ctx->strokeThickness()));
97 p->setPen(QPen(QColor(ctx->strokeColor()), ctx->strokeThickness()));
GraphicsContextQt.cpp 340 float width = strokeThickness();
446 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f || !strokeColor().alpha())
    [all...]
  /external/webkit/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 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));
452 m_data->context->SetPen(wxPen(color, strokeThickness(), strokeStyleToWxPenStyle(strokeStyle())));
  /external/webkit/WebCore/rendering/
InlineTextBox.h 37 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
InlineTextBox.cpp 236 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
239 if (strokeThickness > 0) {
253 if (strokeThickness != context->strokeThickness())
254 context->setStrokeThickness(strokeThickness);
    [all...]
RenderMediaControlsChromium.cpp 203 float originalThickness = context->strokeThickness();
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 273 float width = strokeThickness();
373 cairo_set_line_width(cr, strokeThickness());
408 float width = strokeThickness();
491 cairo_set_line_width(cr, strokeThickness());
756 void GraphicsContext::setPlatformStrokeThickness(float strokeThickness)
761 cairo_set_line_width(m_data->cr, strokeThickness);
    [all...]
FontCairo.cpp 183 cairo_set_line_width(cr, context->strokeThickness());
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 225 float width = strokeThickness();
357 if (paintingDisabled() || strokeStyle() == NoStroke || strokeThickness() <= 0.0f)
386 float width = strokeThickness();
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 657 pen = createPen(strokeColor(), strokeThickness(), strokeStyle());
696 lineRect.setHeight(lineRect.height() + strokeThickness());
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/skia/
GraphicsContextSkia.cpp 555 int width = roundf(strokeThickness());
678 int thickness = SkMax32(static_cast<int>(strokeThickness()), 1);
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
FontGtk.cpp 256 cairo_set_line_width(cr, context->strokeThickness());
  /external/webkit/WebCore/platform/graphics/android/
GraphicsContextAndroid.cpp 512 float lineThickness = context->strokeThickness();
597 paint.setStrokeWidth(SkFloatToScalar(this->strokeThickness()));
    [all...]
  /external/webkit/WebCore/svg/
SVGFont.cpp 545 context->setStrokeThickness(context->strokeThickness() / scale);
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 793 milliseconds