Home
last modified time | relevance | path

Searched refs:ioSurface (Results 1 – 1 of 1) sorted by relevance

/external/webkit/Source/WebKit2/Shared/mac/
DShareableSurface.cpp120 RetainPtr<IOSurfaceRef> ioSurface = createIOSurface(size); in create() local
121 if (!ioSurface) in create()
124 return adoptRef(new ShareableSurface(cglContextObj, size, ioSurface.get())); in create()
131 RetainPtr<IOSurfaceRef> ioSurface(AdoptCF, IOSurfaceLookupFromMachPort(handle.m_port)); in create() local
132 if (!ioSurface) in create()
135 IntSize size = IntSize(IOSurfaceGetWidth(ioSurface.get()), IOSurfaceGetHeight(ioSurface.get())); in create()
137 return adoptRef(new ShareableSurface(cglContextObj, size, ioSurface.get())); in create()
140 …Surface::ShareableSurface(CGLContextObj cglContextObj, const IntSize& size, IOSurfaceRef ioSurface) in ShareableSurface() argument
145 , m_ioSurface(ioSurface) in ShareableSurface()