Searched refs:imageRef (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebKit2/Shared/API/c/cg/
H A DWKImageCG.cpp37 CGImageRef WKImageCreateCGImage(WKImageRef imageRef) argument
39 return toImpl(imageRef)->bitmap()->makeCGImageCopy().leakRef();
42 WKImageRef WKImageCreateFromCGImage(CGImageRef imageRef, WKImageOptions options) argument
44 IntSize imageSize(CGImageGetWidth(imageRef), CGImageGetHeight(imageRef));
47 CGContextDrawImage(graphicsContext->platformContext(), CGRectMake(0, 0, imageSize.width(), imageSize.height()), imageRef);
H A DWKImageCG.h39 WK_EXPORT WKImageRef WKImageCreateFromCGImage(CGImageRef imageRef, WKImageOptions options);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKImage.cpp45 WKSize WKImageGetSize(WKImageRef imageRef) argument
47 return toAPI(toImpl(imageRef)->size());
/external/opencv/otherlibs/highgui/
H A Dgrfmt_imageio.cpp49 CGImageRef imageRef = CGImageSourceCreateImageAtIndex( sourceRef, 0, NULL );
51 if( !imageRef ) return false;
85 CGImageRelease( imageRef );
95 imageRef = NULL;
107 imageRef = CGImageSourceCreateImageAtIndex( sourceRef, 0, NULL );
109 if( !imageRef )
112 m_width = CGImageGetWidth( imageRef );
113 m_height = CGImageGetHeight( imageRef );
115 CGColorSpaceRef colorSpace = CGImageGetColorSpace( imageRef );
182 CGContextDrawImage( context, rect, imageRef );
349 CGImageRef imageRef = CGBitmapContextCreateImage( context ); local
[all...]
H A Dgrfmt_imageio.h30 CGImageRef imageRef; member in class:GrFmtImageIOReader
/external/webkit/Source/WebKit/chromium/public/
H A DWebImage.h103 WebImage(CGImageRef imageRef) argument
106 assign(imageRef);
109 WebImage& operator=(CGImageRef imageRef) argument
111 assign(imageRef);
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageCG.cpp125 void WebImage::assign(CGImageRef imageRef) argument
127 // Make sure to retain the imageRef first incase m_imageRef == imageRef.
128 CGImageRetain(imageRef);
130 m_imageRef = imageRef;
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DClassTracker.cpp114 layer->texture(), layer->imageRef(),
/external/webkit/Source/WebKit/android/jni/
H A DViewStateSerializer.cpp506 SkBitmapRef* imageRef = new SkBitmapRef(contentsImage); local
507 layer->setContentsImage(imageRef);
508 delete imageRef;
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebBaseNetscapePluginView.mm513 RetainPtr<CGImageSourceRef> imageRef(AdoptCF, CGImageSourceCreateWithData((CFDataRef)[core([self webFrame])->nodeImage(element).get() TIFFRepresentation], 0));
514 CGImageRef cgImage = CGImageSourceCreateImageAtIndex(imageRef.get(), 0, 0);

Completed in 129 milliseconds