Searched refs:CGContextRef (Results 1 - 25 of 109) sorted by relevance

12345

/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.h31 void paintImage(CGContextRef, CGImageRef, CGPoint destination, CGRect source);
32 void paintBitmapContext(CGContextRef, CGContextRef bitmapContext, CGPoint destination, CGRect source);
H A DCGUtilities.cpp33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source)
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source)
/external/webkit/Source/WebKit2/Shared/API/c/cg/
H A DWKGraphicsContextCG.cpp35 CGContextRef WKGraphicsContextGetCGContext(WKGraphicsContextRef graphicsContextRef)
H A DWKGraphicsContextCG.h36 WK_EXPORT CGContextRef WKGraphicsContextGetCGContext(WKGraphicsContextRef graphicsContext);
/external/webkit/Tools/DumpRenderTree/cg/
H A DPixelDumpSupportCG.h42 typedef struct CGContext* CGContextRef; typedef in typeref:struct:CGContext
52 static PassRefPtr<BitmapContext> createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, CGContextRef context)
67 CGContextRef cgContext() const { return m_context.get(); }
71 BitmapContext(PlatformBitmapBuffer buffer, CGContextRef context)
78 RetainPtr<CGContextRef> m_context;
/external/skia/include/utils/mac/
H A DSkCGUtils.h35 void SkCGDrawBitmap(CGContextRef, const SkBitmap&, float x, float y);
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.h36 typedef struct CGContext *CGContextRef; typedef in typeref:struct:CGContext
50 void displayCallback(CACFLayerRef, CGContextRef);
68 static void tileDisplayCallback(CACFLayerRef, CGContextRef);
70 void drawTile(CACFLayerRef, CGContextRef);
/external/webkit/Source/WebCore/platform/win/
H A DDragImageCGWin.cpp41 void deallocContext(CGContextRef target)
46 HBITMAP allocImage(HDC dc, IntSize size, CGContextRef *targetRef)
56 CGContextRef bitmapContext = CGBitmapContextCreate(bits, bmpInfo.bmiHeader.biWidth, bmpInfo.bmiHeader.biHeight, 8,
68 static CGContextRef createCgContextFromBitmap(HBITMAP bitmap)
74 CGContextRef bitmapContext = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8,
86 CGContextRef targetContext;
87 CGContextRef srcContext;
128 CGContextRef drawContext = 0;
/external/webkit/Source/WebKit/win/
H A DWebKitGraphics.h34 typedef struct CGContext* CGContextRef; typedef in typeref:struct:CGContext
52 CGContextRef cgContext;
/external/webkit/Source/WebKit2/Shared/
H A DWebGraphicsContext.h51 CGContextRef platformContext() { return m_platformContext.get(); }
63 RetainPtr<CGContextRef> m_platformContext;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DWebLayer.h52 void drawLayerContents(CGContextRef, CALayer *, WebCore::PlatformCALayer*);
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.h59 typedef CGContextRef PlatformGraphicsContext;
77 CGContextRef backingStoreContext();
80 RetainPtr<CGContextRef> m_bitmapContext;
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DBackingStoreMac.mm56 CGContextRef BackingStore::backingStoreContext()
62 if (CGContextRef containingWindowContext = m_webPageProxy->containingWindowGraphicsContext()) {
64 CGContextRef layerContext = CGLayerGetContext(m_cgLayer.get());
98 CGContextRef context = backingStoreContext();
122 CGContextRef layerContext = CGLayerGetContext(m_cgLayer.get());
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
H A DWebKitSystemInterface.h43 typedef struct CGContext* CGContextRef; typedef in typeref:struct:CGContext
75 uint32_t wkSetFontSmoothingStyle(CGContextRef cg, bool fontAllowsSmoothing);
76 void wkRestoreFontSmoothingStyle(CGContextRef cg, uint32_t oldStyle);
77 void wkSetCGContextFontRenderingStyle(CGContextRef, bool isSystemFont, bool isPrinterFont, bool usePlatformNativeGlyphs);
82 void wkSetPatternBaseCTM(CGContextRef, CGAffineTransform);
83 void wkSetPatternPhaseInUserSpace(CGContextRef, CGPoint phasePoint);
84 CGAffineTransform wkGetUserToBaseCTM(CGContextRef);
86 void wkDrawFocusRing(CGContextRef, CGColorRef, float radius);
232 void WKDrawMediaUIPart(int part, int themeStyle, CGContextRef context, CGRect rect, unsigned state);
233 void WKDrawMediaSliderTrack(int themeStyle, CGContextRef contex
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreSystemInterface.mm31 BOOL (*wkCGContextGetShouldSmoothFonts)(CGContextRef);
38 void (*wkDrawCapsLockIndicator)(CGContextRef, CGRect);
40 void (*wkDrawFocusRing)(CGContextRef, CGColorRef, int radius);
44 void (*wkDrawMediaSliderTrack)(int themeStyle, CGContextRef context, CGRect rect, float timeLoaded, float currentTime,
47 void (*wkDrawMediaUIPart)(int part, int themeStyle, CGContextRef context, CGRect rect, unsigned state);
70 void (*wkSetCGFontRenderingMode)(CGContextRef, NSFont*);
73 void (*wkSetPatternBaseCTM)(CGContextRef, CGAffineTransform);
74 void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint point);
75 CGAffineTransform (*wkGetUserToBaseCTM)(CGContextRef);
131 CGContextRef (*wkIOSurfaceContextCreat
[all...]
H A DWebCoreSystemInterface.h96 extern BOOL (*wkCGContextGetShouldSmoothFonts)(CGContextRef);
111 extern void (*wkDrawCapsLockIndicator)(CGContextRef, CGRect);
113 extern void (*wkDrawFocusRing)(CGContextRef, CGColorRef, int radius);
117 extern void (*wkDrawMediaSliderTrack)(int themeStyle, CGContextRef context, CGRect rect, float timeLoaded, float currentTime,
119 extern void (*wkDrawMediaUIPart)(int part, int themeStyle, CGContextRef context, CGRect rect, unsigned state);
144 extern void (*wkSetCGFontRenderingMode)(CGContextRef, NSFont*);
149 extern void (*wkSetPatternBaseCTM)(CGContextRef, CGAffineTransform);
150 extern void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint);
151 extern CGAffineTransform (*wkGetUserToBaseCTM)(CGContextRef);
206 extern CGContextRef (*wkIOSurfaceContextCreat
[all...]
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DGraphicsContextPlatformPrivateCG.h43 GraphicsContextPlatformPrivate(CGContextRef cgContext, GraphicsContextCGFlags flags = 0)
95 RetainPtr<CGContextRef> m_cgContext;
H A DGraphicsContextCG.cpp70 CG_EXTERN void CGContextSetCTM(CGContextRef, CGAffineTransform);
77 static void setCGFillColor(CGContextRef context, const Color& color, ColorSpace colorSpace)
82 static void setCGStrokeColor(CGContextRef context, const Color& color, ColorSpace colorSpace)
115 void GraphicsContext::platformInit(CGContextRef cgContext)
131 CGContextRef GraphicsContext::platformContext() const
163 CGContextRef context = platformContext();
238 CGContextRef context = platformContext();
319 CGContextRef context = platformContext();
420 CGContextRef context = platformContext();
441 CGContextRef contex
[all...]
H A DPatternCG.cpp37 static void patternCallback(void* info, CGContextRef context)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebTiledLayer.h64 static void tileDisplayCallback(CACFLayerRef, CGContextRef);
65 void drawTile(CACFLayerRef, CGContextRef);
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
H A Dnon-kerned-drawing.cpp53 CGContextRef cgContext = static_cast<CGContextRef>(dc->GetGraphicsContext()->GetNativeContext());
/external/webkit/Source/WebKit/mac/Misc/
H A DQuickDrawCompatibility.h44 extern OSStatus CreateCGContextForPort(CGrafPtr, CGContextRef*);
45 extern OSStatus SyncCGContextOriginWithPort(CGContextRef, CGrafPtr);
/external/webkit/Tools/WebKitTestRunner/cg/
H A DTestInvocationCG.cpp47 static CGContextRef createCGContextFromImage(WKImageRef wkImage)
57 CGContextRef context = CGBitmapContextCreate(buffer, pixelsWide, pixelsHigh, 8, rowBytes, colorSpace, kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host);
65 void computeMD5HashStringForContext(CGContextRef bitmapContext, char hashString[33])
102 static void dumpBitmap(CGContextRef bitmapContext)
131 CGContextRef context = createCGContextFromImage(image);
/external/webkit/WebKitLibraries/
H A DWebKitSystemInterface.h117 void WKDrawCapsLockIndicator(CGContextRef, CGRect);
119 void WKDrawFocusRing(CGContextRef context, CGColorRef color, int radius);
141 void WKSetCGFontRenderingMode(CGContextRef cgContext, NSFont *font);
142 BOOL WKCGContextGetShouldSmoothFonts(CGContextRef cgContext);
155 void WKSetPatternBaseCTM(CGContextRef, CGAffineTransform);
156 void WKSetPatternPhaseInUserSpace(CGContextRef, CGPoint);
157 CGAffineTransform WKGetUserToBaseCTM(CGContextRef);
178 CGContextRef WKIOSurfaceContextCreate(IOSurfaceRef, unsigned width, unsigned height, CGColorSpaceRef);
179 CGImageRef WKIOSurfaceContextCreateImage(CGContextRef context);
188 CGContextRef WKNSWindowOverrideCGContex
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
H A DChunkedUpdateDrawingAreaMac.cpp48 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreate(updateChunk->data(), updateChunk->rect().width(), updateChunk->rect().height(), 8, updateChunk->rect().width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));

Completed in 608 milliseconds

12345