HomeSort by relevance Sort by last modified time
    Searched refs:fillColor (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 51 graphicsContext->setFillColor(graphicsContext->fillColor(), ColorSpaceDeviceRGB);
62 graphicsContext->fillColor().getRGBA(red, green, blue, alpha);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 133 Color fillColor = graphicsContext->fillColor();
138 if (!fillColor.alpha())
141 drawIntoBitmap = fillColor.alpha() != 255 || graphicsContext->inTransparencyLayer();
196 SetTextColor(hdc, RGB(fillColor.red(), fillColor.green(), fillColor.blue()));
289 UInt8 alpha = (255 - buffer[i + 1]) * fillColor.alpha() / 255;
290 buffer[i] = fillColor.blue();
291 buffer[i + 1] = fillColor.green()
    [all...]
GraphicsContextCairoWin.cpp 85 setPlatformFillColor(fillColor(), fillColorSpace());
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContext.cpp 101 , fillColor(SK_ColorBLACK)
120 , fillColor(other.fillColor)
249 m_state->fillColor = c.rgb();
256 m_state->fillColor = Color::black;
398 paint->setColor(m_state->applyAlpha(m_state->fillColor));
PlatformGraphicsContextSkia.cpp 278 if (m_state->fillColor & 0xFF000000) {
297 if (m_state->fillColor & 0xFF000000) {
460 if (m_state->fillColor & 0xFF000000) {
GraphicsContextAndroid.cpp 89 pgc->setFillColor(gc->state().fillColor);
150 return m_state.fillColor.rgb();
PlatformGraphicsContext.h 170 SkColor fillColor;
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontMac.mm 229 Color fillColor = context->fillColor();
230 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255);
238 context->setFillColor(fillColor, fillColorSpace);
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 60 void drawOutlinedQuad(GraphicsContext& context, const FloatQuad& quad, const Color& fillColor)
81 context.setFillColor(fillColor, ColorSpaceDeviceRGB);
85 void drawOutlinedQuadWithClip(GraphicsContext& context, const FloatQuad& quad, const FloatQuad& clipQuad, const Color& fillColor)
90 drawOutlinedQuad(context, quad, fillColor);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
FontHaiku.cpp 76 Color color = graphicsContext->fillColor();
  /external/webkit/Source/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 116 Color fillColor;
137 , fillColor(Color::black)
183 fillColor = other->fillColor;
201 setVGSolidColor(VG_FILL_PATH, fillColor);
378 return (compositeOperation == CompositeSourceOver && !fillColor.alpha());
641 Color PainterOpenVG::fillColor() const
644 return m_state->fillColor;
652 m_state->fillColor = color;
    [all...]
PainterOpenVG.h 91 Color fillColor() const;
GraphicsContextOpenVG.cpp 168 Color oldColor = m_data->fillColor();
181 Color oldColor = m_data->fillColor();
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 37 if (textColor != context->fillColor())
59 if (textColor != context->fillColor())
InlineTextBox.h 39 void updateGraphicsContext(GraphicsContext*, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace);
InlineTextBox.cpp 320 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
331 if (mode & TextModeFill && (fillColor != context->fillColor() || colorSpace != context->fillColorSpace()))
332 context->setFillColor(fillColor, colorSpace);
393 Color fillColor = context->fillColor();
395 bool opaque = fillColor.alpha() == 255;
404 context->setFillColor(fillColor, fillColorSpace);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 86 setSourceRGBAFromColor(cr, context->fillColor());
265 if (fillColor().alpha())
266 fillRectSourceOver(cr, rect, fillColor());
386 if (fillColor().alpha()) {
387 setSourceRGBAFromColor(cr, fillColor());
499 if (fillColor().alpha()) {
500 setSourceRGBAFromColor(cr, fillColor());
    [all...]
FontCairo.cpp 137 context->fillColor().getRGBA(red, green, blue, alpha);
  /external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 121 setPlatformFillColor(fillColor(), fillColorSpace());
169 Color oldFillColor = fillColor();
486 bool shouldFill = state.fillPattern || state.fillColor.alpha();
721 Color oldFillColor = fillColor();
753 Color oldFillColor = fillColor();
804 Color oldFillColor = fillColor();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 74 Color color = graphicsContext->fillColor();
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 643 if (fillColor().alpha()) {
644 brush = createBrush(fillColor());
702 if (!m_data->m_opacity || paintingDisabled() || (!fillColor().alpha() && strokeStyle() == NoStroke))
718 if (fillColor().alpha()) {
719 brush = createBrush(fillColor());
900 if (fillColor().alpha()) {
901 brush = createBrush(fillColor());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext.h 170 , fillColor(Color::black)
206 Color fillColor;
253 Color fillColor() const;
GraphicsContext.cpp 214 m_state.fillColor = color;
221 Color GraphicsContext::fillColor() const
223 return m_state.fillColor;
641 Color oldFillColor = fillColor();
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 125 paint.setColor(gc->fillColor().rgb());
202 setupForTextPainting(&fillPaint, gc->fillColor().rgb());
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.cpp 119 void WebThemeControlDRTWin::box(const SkIRect& rect, SkColor fillColor)
124 paint.setColor(fillColor);

Completed in 91 milliseconds

1 2