/external/webkit/WebCore/rendering/ |
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...] |
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);
|
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/WebKitTools/DumpRenderTree/win/ |
PixelDumpSupportWin.cpp | 74 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB()); 76 info.bmWidthBytes, colorSpace.get(), kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst);
|
/external/webkit/WebCore/platform/graphics/mac/ |
ColorMac.h | 42 // These functions assume NSColors are in DeviceRGB colorspace
|
Canvas3DLayer.mm | 113 -(CGImageRef)copyImageSnapshotWithColorSpace:(CGColorSpaceRef)colorSpace 117 RetainPtr<CGColorSpaceRef> imageColorSpace = colorSpace;
|
ColorMac.mm | 112 // This needs to always use device colorspace so it can de-calibrate the color for
|
/external/webkit/WebCore/platform/graphics/qt/ |
StillImageQt.cpp | 53 const FloatRect& src, ColorSpace, CompositeOperator op)
|
StillImageQt.h | 49 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
|
ImageQt.cpp | 97 const FloatPoint& phase, ColorSpace, CompositeOperator op, const FloatRect& destRect) 165 const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op)
|
GraphicsContextQt.cpp | 631 void GraphicsContext::fillRect(const FloatRect& rect, const Color& c, ColorSpace colorSpace) 642 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace) 770 void GraphicsContext::setPlatformShadow(const IntSize& size, int, const Color&, ColorSpace) 1109 void GraphicsContext::setPlatformStrokeColor(const Color& color, ColorSpace colorSpace) [all...] |
/external/webkit/WebCore/platform/graphics/ |
Image.cpp | 78 void Image::fillWithSolidColor(GraphicsContext* ctxt, const FloatRect& dstRect, const Color& color, ColorSpace styleColorSpace, CompositeOperator op) 107 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, ColorSpace styleColorSpace, CompositeOperator op) 147 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, TileRule hRule, TileRule vRule, ColorSpace styleColorSpace, CompositeOperator op)
|
BitmapImage.h | 172 virtual void drawFrameMatchingSourceSize(GraphicsContext*, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator); 174 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator); 178 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator, const FloatRect& destRect);
|
/external/webkit/WebCore/platform/graphics/wince/ |
ImageBufferWince.cpp | 73 ImageBuffer::ImageBuffer(const IntSize& size, ImageColorSpace colorSpace, bool& success) 77 // FIXME: colorSpace is not used 78 UNUSED_PARAM(colorSpace);
|
/external/webkit/WebCore/platform/graphics/cg/ |
PDFDocumentImage.h | 61 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
|
ImageCG.cpp | 131 static RetainPtr<CGImageRef> imageWithColorSpace(CGImageRef originalImage, ColorSpace colorSpace) 140 switch (colorSpace) { 157 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& destRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp) 248 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
|
/external/webkit/WebCore/platform/graphics/skia/ |
BitmapImageSingleFrameSkia.h | 75 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
|
GraphicsContextSkia.cpp | 744 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 776 ColorSpace colorSpace) 793 fillRect(rect, color, colorSpace); 961 void GraphicsContext::setPlatformFillColor(const Color& color, ColorSpace colorSpace) 987 ColorSpace colorSpace) 1029 void GraphicsContext::setPlatformStrokeColor(const Color& strokecolor, ColorSpace colorSpace [all...] |
/external/webkit/WebCore/svg/graphics/ |
SVGImage.h | 69 virtual void draw(GraphicsContext*, const FloatRect& fromRect, const FloatRect& toRect, ColorSpace styleColorSpace, CompositeOperator);
|
/external/webkit/WebCore/platform/graphics/haiku/ |
ImageHaiku.cpp | 88 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op) 123 void Image::drawPattern(GraphicsContext* context, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& srcPoint, ColorSpace, CompositeOperator op, const FloatRect& dstRect)
|
/external/jpeg/ |
jcparam.c | 348 /* Choose JPEG colorspace based on input space, set defaults accordingly */ 355 * Select an appropriate JPEG colorspace for in_color_space. 387 * Set the JPEG colorspace, and choose colorspace-dependent default values. 391 jpeg_set_colorspace (j_compress_ptr cinfo, J_COLOR_SPACE colorspace) 413 cinfo->jpeg_color_space = colorspace; 418 switch (colorspace) {
|
jdapimin.c | 117 /* Guess the input colorspace, and set output colorspace accordingly. */ 157 /* Always guess RGB is proper output colorspace. */
|
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/ |
SDL_sysvideo.cc | 164 static inline int ColorSpaceToBitsPerPixel(uint32 colorspace) 169 switch (colorspace) { 282 vformat->BitsPerPixel = ColorSpaceToBitsPerPixel(bscreen.ColorSpace()); 284 SDL_SetError("Unknown BScreen colorspace: 0x%x", 285 bscreen.ColorSpace()); 294 //if ( bpp != 0 ) { // There are bugs in changing colorspace 548 bbitmap = new BBitmap(bounds, bscreen.ColorSpace());
|
/external/webkit/WebCore/platform/graphics/cairo/ |
GraphicsContextCairo.cpp | 575 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace) 744 void GraphicsContext::setPlatformFillColor(const Color& col, ColorSpace colorSpace) 750 void GraphicsContext::setPlatformStrokeColor(const Color& col, ColorSpace colorSpace) 836 void GraphicsContext::setPlatformShadow(IntSize const& size, int, Color const&, ColorSpace) [all...] |