Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
DSDL_QuartzVideo.h106 CGContextRef cg_context; /* CoreGraphics rendering context */ member
145 #define cg_context (this->hidden->cg_context) macro
DSDL_QuartzVideo.m556 if (cg_context) {
557 CGContextFlush (cg_context);
558 CGContextRelease (cg_context);
559 cg_context = nil;
892 cg_context = CGBitmapContextCreate (current->pixels, current->w, current->h,
899 current->hwdata = (void *) cg_context;
1108 cg_context = CGBitmapContextCreate (current->pixels, current->w, current->h,
1115 current->hwdata = (void *) cg_context;
1527 CGContextFlush (cg_context);
1528 CGImageRef image = CGBitmapContextCreateImage (cg_context);
/external/chromium_org/content/plugin/
Dwebplugin_proxy.cc464 CGContextRef cg_context = NULL; in CreateDIBAndCGContextFromHandle() local
466 cg_context = CGBitmapContextCreate( in CreateDIBAndCGContextFromHandle()
474 CGContextTranslateCTM(cg_context, 0, window_rect.height()); in CreateDIBAndCGContextFromHandle()
475 CGContextScaleCTM(cg_context, 1, -1); in CreateDIBAndCGContextFromHandle()
478 cg_context_out->reset(cg_context); in CreateDIBAndCGContextFromHandle()