HomeSort by relevance Sort by last modified time
    Searched full:colorspace (Results 26 - 50 of 317) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsContextAndroid.cpp 225 const Color& color, ColorSpace colorSpace)
232 bottomLeft, bottomRight, color, colorSpace);
244 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
250 platformContext()->fillRect(rect, color, colorSpace);
362 void GraphicsContext::setPlatformStrokeColor(const Color& c, ColorSpace)
380 void GraphicsContext::setPlatformFillColor(const Color& c, ColorSpace)
384 void GraphicsContext::setPlatformShadow(const FloatSize& size, float blur, const Color& color, ColorSpace)
650 ColorSpace colorSpace, int from
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GradientCG.cpp 67 CGColorSpaceRef colorSpace = deviceRGBColorSpaceRef();
70 m_gradient = CGShadingCreateRadial(colorSpace, m_p0, m_r0, m_p1, m_r1, colorFunction.get(), true, true);
72 m_gradient = CGShadingCreateAxial(colorSpace, m_p0, m_p1, colorFunction.get(), true, true);
GraphicsContextCG.cpp 77 static void setCGFillColor(CGContextRef context, const Color& color, ColorSpace colorSpace)
79 CGContextSetFillColorWithColor(context, cachedCGColor(color, colorSpace));
82 static void setCGStrokeColor(CGContextRef context, const Color& color, ColorSpace colorSpace)
84 CGContextSetStrokeColorWithColor(context, cachedCGColor(color, colorSpace));
715 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
722 ColorSpace oldColorSpace = fillColorSpace();
724 if (oldFillColor != color || oldColorSpace != colorSpace)
    [all...]
ImageBufferCG.cpp 100 ImageBuffer::ImageBuffer(const IntSize& size, ColorSpace imageColorSpace, RenderingMode renderingMode, bool& success)
200 void ImageBuffer::draw(GraphicsContext* destContext, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
214 ColorSpace colorSpace = (destContext == context()) ? ColorSpaceDeviceRGB : styleColorSpace;
215 destContext->drawImage(copy.get(), colorSpace, destRect, srcRect, op, useLowQualityScale);
220 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageBufferWx.cpp 40 ImageBuffer::ImageBuffer(const IntSize&, ColorSpace imageColorSpace, RenderingMode, bool& success) :
107 void ImageBuffer::draw(GraphicsContext* context, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect,
115 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
GraphicsContextWx.cpp 264 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
278 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight, const IntSize& bottomLeft, const IntSize& bottomRight, const Color& color, ColorSpace colorSpace)
456 void GraphicsContext::setPlatformStrokeColor(const Color& color, ColorSpace colorSpace)
475 void GraphicsContext::setPlatformFillColor(const Color& color, ColorSpace colorSpace)
550 void GraphicsContext::setPlatformShadow(FloatSize const&, float, Color const&, ColorSpace)
  /external/webkit/Source/WebCore/rendering/svg/
SVGImageBufferTools.cpp 53 bool SVGImageBufferTools::createImageBuffer(const FloatRect& absoluteTargetRect, const FloatRect& clampedAbsoluteTargetRect, OwnPtr<ImageBuffer>& imageBuffer, ColorSpace colorSpace)
62 OwnPtr<ImageBuffer> image = ImageBuffer::create(imageSize, colorSpace);
SVGImageBufferTools.h 38 static bool createImageBuffer(const FloatRect& absoluteTargetRect, const FloatRect& clampedAbsoluteTargetRect, OwnPtr<ImageBuffer>&, ColorSpace);
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
v4l2-mediabus.h 105 * @colorspace: colorspace of the data (from enum v4l2_colorspace)
112 __u32 colorspace; member in struct:v4l2_mbus_framefmt
  /external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.cpp 37 void GeneratedImage::draw(GraphicsContext* context, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp)
51 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator compositeOp, const FloatRect& destRect)
GeneratedImage.h 60 virtual void draw(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, ColorSpace styleColorSpace, CompositeOperator);
62 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator, const FloatRect& destRect);
ImageBuffer.cpp 35 void ImageBuffer::transformColorSpace(ColorSpace srcColorSpace, ColorSpace dstColorSpace)
ColorSpace.h 31 enum ColorSpace {
ShadowBlur.cpp 82 void setLastShadowValues(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii)
87 m_lastColorSpace = colorSpace;
92 void setLastInsetShadowValues(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& bounds, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii)
98 m_lastColorSpace = colorSpace;
103 bool matchesLastShadow(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& shadowRect, const RoundedIntRect::Radii& radii) const
107 return m_lastRadius == radius && m_lastColor == color && m_lastColorSpace == colorSpace && shadowRect == m_lastShadowRect && radii == m_lastRadii;
110 bool matchesLastInsetShadow(float radius, const Color& color, ColorSpace colorSpace, const FloatRect& bounds, const FloatRect& shadowRect, const RoundedIntRect::Radii& rad (…)
    [all...]
  /external/webkit/Source/WebCore/platform/haiku/
ScreenHaiku.cpp 62 color_space cs = screen.ColorSpace();
82 return screen.ColorSpace() == B_MONOCHROME_1_BIT;
  /external/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.cpp 63 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
64 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_rect.width(), m_rect.height(), 8, 32, m_rect.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host, provider.get(), 0, false, kCGRenderingIntentDefault));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
ChunkedUpdateDrawingAreaMac.cpp 47 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB());
48 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreate(updateChunk->data(), updateChunk->rect().width(), updateChunk->rect().height(), 8, updateChunk->rect().width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
  /external/webkit/Tools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 52 // To ensure pixel tests consistency, we need to always render in the same colorspace.
53 // Unfortunately, because of AppKit / WebKit constraints, we can't render directly in the colorspace of our choice.
54 // This implies we have to temporarily change the profile of the main display to the colorspace we want to render into.
55 // We also need to make sure the CGBitmapContext we return is in that same colorspace.
116 static CGColorSpaceRef colorSpace = 0;
117 if (!colorSpace) {
123 colorSpace = CGColorSpaceCreateWithPlatformColorSpace(profile);
128 CGContextRef context = CGBitmapContextCreate(buffer, pixelsWide, pixelsHigh, 8, rowBytes, colorSpace, kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host); // Use ARGB8 on PPC or BGRA8 on X86 to improve CG performance
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageWinCE.cpp 91 void BitmapImage::drawFrameMatchingSourceSize(GraphicsContext* ctxt, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator compositeOp)
111 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRectIn, ColorSpace styleColorSpace, CompositeOperator compositeOp)
137 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
143 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect)
SharedBitmap.h 26 #include "ColorSpace.h"
84 void draw(GraphicsContext* ctxt, const IntRect& dstRect, const IntRect& srcRect, ColorSpace styleColorSpace, CompositeOperator compositeOp);
86 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect, const IntSize& origSourceSize);
89 const FloatPoint& phase, ColorSpace styleColorSpace, CompositeOperator op, const FloatRect& destRect, const IntSize& origSourceSize);
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglDisplay.java 229 int colorSpace = image.getRGB(j, i);
230 imageBuffer[counter + 0] = (byte) ((colorSpace << 8) >> 24);
231 imageBuffer[counter + 1] = (byte) ((colorSpace << 16) >> 24);
232 imageBuffer[counter + 2] = (byte) ((colorSpace << 24) >> 24);
233 imageBuffer[counter + 3] = (byte) (colorSpace >> 24);
  /external/webkit/Source/WebCore/rendering/
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);
336 context->setStrokeColor(strokeColor, colorSpace);
394 ColorSpace fillColorSpace = context->fillColorSpace();
679 updateGraphicsContext(context, textFillColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
687 updateGraphicsContext(context, emphasisMarkColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
714 updateGraphicsContext(context, selectionFillColor, selectionStrokeColor, selectionStrokeWidth, styleToUse->colorSpace());
717 updateGraphicsContext(context, selectionEmphasisMarkColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace());
    [all...]
  /external/jpeg/
jccolor.c 8 * This file contains input colorspace conversion routines.
55 * colorspace anyway.
84 * Initialize for RGB->YCC colorspace conversion.
120 * Convert some rows of samples to the JPEG colorspace.
181 * Convert some rows of samples to the JPEG colorspace.
219 * Convert some rows of samples to the JPEG colorspace.
276 * Convert some rows of samples to the JPEG colorspace.
335 * Convert some rows of samples to the JPEG colorspace.
416 * Module initialization routine for input colorspace conversion.
  /external/opencv/otherlibs/highgui/
grfmt_jpeg2000.cpp 161 int colorspace; local
165 colorspace = JAS_CLRSPC_SRGB;
170 colorspace = JAS_CLRSPC_SGRAY; // TODO GENGRAY or SGRAY?
173 // convert to the desired colorspace
176 jas_cmprof_t *clrprof = jas_cmprof_createfromclrspc( colorspace );
187 fprintf(stderr, "JPEG 2000 LOADER ERROR: cannot convert colorspace\n");
191 fprintf(stderr, "JPEG 2000 LOADER ERROR: unable to create colorspace\n");
250 fprintf(stderr, "JPEG2000 LOADER ERROR: colorspace conversion failed\n" );
  /external/webkit/Source/WebCore/platform/image-decoders/cg/
ImageDecoderCG.cpp 96 RetainPtr<CGColorSpaceRef> colorSpace(AdoptCF, createColorSpace(m_colorProfile));
101 return CGImageCreate(width(), height(), 8, 32, width() * sizeof(PixelData), colorSpace.get(),

Completed in 2616 milliseconds

12 3 4 5 6 7 8 91011>>