HomeSort by relevance Sort by last modified time
    Searched defs:colorSpace (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.cpp 66 ColorSpace colorSpace = style ? style->colorSpace() : DeviceColorSpace;
70 context->setFillColor(color().rgb(), colorSpace);
79 context->setStrokeColor(color().rgb(), colorSpace);
SVGResourceFilter.cpp 181 ColorSpace colorSpace = DeviceColorSpace;
183 colorSpace = object->style()->colorSpace();
184 context->drawImage(resultImage->image(), colorSpace, lastEffect->subRegion());
  /external/webkit/WebCore/platform/graphics/cg/
GradientCG.cpp 68 static CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
71 m_gradient = CGShadingCreateRadial(colorSpace, m_p0, m_r0, m_p1, m_r1, colorFunction.get(), true, true);
73 m_gradient = CGShadingCreateAxial(colorSpace, m_p0, m_p1, colorFunction.get(), true, true);
83 static CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
103 m_gradient = CGGradientCreateWithColorComponents(colorSpace, colorComponents.data(), locations.data(), m_stops.size());
ImageBufferCG.cpp 73 RetainPtr<CGColorSpaceRef> colorSpace;
76 colorSpace.adoptCF(CGColorSpaceCreateDeviceRGB());
79 colorSpace.adoptCF(CGColorSpaceCreateDeviceGray());
83 colorSpace.adoptCF(CGColorSpaceCreateWithName(kCGColorSpaceGenericRGBLinear));
87 colorSpace.adoptCF(CGColorSpaceCreateDeviceRGB());
92 colorSpace.get(), (imageColorSpace == GrayScale) ? kCGImageAlphaNone : kCGImageAlphaPremultipliedLast));
  /external/webkit/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 781 static CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
794 RetainPtr<CGImageRef> frameImage(AdoptCF, CGImageCreate(width, height, 8, bitsPerPixel, rowBytes, colorSpace,
  /external/webkit/WebCore/rendering/
RenderFrameSet.cpp 92 ColorSpace colorSpace = style()->colorSpace();
93 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->borderLeftColor() : borderFillColor(), colorSpace);
98 context->fillRect(IntRect(borderRect.topLeft(), IntSize(1, height())), borderStartEdgeColor(), colorSpace);
99 context->fillRect(IntRect(borderRect.topRight(), IntSize(1, height())), borderEndEdgeColor(), colorSpace);
112 ColorSpace colorSpace = style()->colorSpace();
113 context->fillRect(borderRect, frameSet()->hasBorderColor() ? style()->borderLeftColor() : borderFillColor(), colorSpace);
    [all...]
RenderListBox.cpp 324 ColorSpace colorSpace = itemStyle->colorSpace();
325 paintInfo.context->setFillColor(textColor, colorSpace);
362 ColorSpace colorSpace = element->renderStyle() ? element->renderStyle()->colorSpace() : style()->colorSpace();
365 paintInfo.context->fillRect(itemRect, backColor, colorSpace);
InlineFlowBox.cpp     [all...]
InlineTextBox.cpp 236 void updateGraphicsContext(GraphicsContext* context, const Color& fillColor, const Color& strokeColor, float strokeThickness, ColorSpace colorSpace)
247 if (mode & cTextFill && (fillColor != context->fillColor() || colorSpace != context->fillColorSpace()))
248 context->setFillColor(fillColor, colorSpace);
252 context->setStrokeColor(strokeColor, colorSpace);
279 ColorSpace fillColorSpace = context->fillColorSpace();
495 updateGraphicsContext(context, textFillColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
511 updateGraphicsContext(context, selectionFillColor, selectionStrokeColor, selectionStrokeWidth, styleToUse->colorSpace());
520 context->setStrokeColor(styleToUse->color(), styleToUse->colorSpace());
591 updateGraphicsContext(context, c, c, 0, style->colorSpace()); // Don't draw text at all
    [all...]
RenderBoxModelObject.cpp 583 context->fillRect(rect, baseColor, style()->colorSpace());
590 context->fillRect(rect, bgColor, style()->colorSpace());
608 context->drawTiledImage(image, style()->colorSpace(), destRect, phase, tileSize, compositeOp, useLowQualityScaling);
    [all...]
  /external/webkit/WebCore/editing/
SelectionController.cpp     [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 886 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceCMYK();
887 CGColorRef shadowColor = CGColorCreate(colorSpace, components);
888 CGColorSpaceRelease(colorSpace);
    [all...]
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 836 CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
842 colorSpace,
863 CGColorSpaceRelease(colorSpace);
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.h 40 #include "ColorSpace.h"
611 ColorSpace colorSpace() const { return static_cast<ColorSpace>(rareInheritedData->colorSpace); }
    [all...]

Completed in 73 milliseconds