HomeSort by relevance Sort by last modified time
    Searched defs:cgContext (Results 1 - 11 of 11) sorted by null

  /external/webkit/Tools/DumpRenderTree/cg/
PixelDumpSupportCG.h 42 typedef struct CGContext* CGContextRef;
67 CGContextRef cgContext() const { return m_context.get(); }
  /external/webkit/Source/WebCore/platform/graphics/win/
ImageCGWin.cpp 72 CGContextRef cgContext = CGBitmapContextCreate(bmpInfo.bmBits, bmpInfo.bmWidth, bmpInfo.bmHeight,
75 GraphicsContext gc(cgContext);
84 CGContextRelease(cgContext);
FontCGWin.cpp 240 CGContextRef cgContext = graphicsContext->platformContext();
242 CGContextSaveGState(cgContext);
246 CGContextSetShouldAntialias(cgContext, fontSmoothingEnabled);
248 CGContextScaleCTM(cgContext, 1.0, -1.0);
249 CGContextTranslateCTM(cgContext, point.x() + glyphBuffer.offsetAt(from).width(), -(point.y() + glyphBuffer.offsetAt(from).height()));
253 CGContextSaveGState(cgContext);
254 CGContextConcatCTM(cgContext, initialGlyphTransform);
257 CGContextAddPath(cgContext, glyphPath.get());
258 CGContextFillPath(cgContext);
260 CGContextTranslateCTM(cgContext, font->syntheticBoldOffset(), 0)
    [all...]
MediaPlayerPrivateQuickTimeWin.cpp 44 #include <CoreGraphics/CGContext.h>
643 CGContextRef cgContext = context.platformContext();
656 CGContextSaveGState(cgContext);
659 CGContextScaleCTM(cgContext, 1, -1);
660 CGContextTranslateCTM(cgContext, rect.width() - drawRect.size.width, m_qtVideoLayer ? -rect.height() : 0);
662 CGContextTranslateCTM(cgContext, rect.width() - drawRect.size.width, 0);
665 CGContextSetFillColor(cgContext, backgroundColor);
666 CGContextFillRect(cgContext, drawRect);
669 CGContextSetFillColor(cgContext, textColor);
670 CGContextSetTextMatrix(cgContext, CGAffineTransformMakeScale(1, -1))
    [all...]
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 53 CGContextRef cgContext = static_cast<CGContextRef>(dc->GetGraphicsContext()->GetNativeContext());
57 CGContextSetFont(cgContext, cgFont);
59 CGContextSetFontSize(cgContext, wxfont->GetPointSize());
63 CGContextSetRGBFillColor(cgContext, red, green, blue, alpha);
69 CGContextSetTextMatrix(cgContext, matrix);
71 CGContextSetTextPosition(cgContext, point.x(), point.y());
73 CGContextShowGlyphsWithAdvances(cgContext, glyphBuffer.glyphs(from), glyphBuffer.advances(from), numGlyphs);
scrollbar_render.cpp 73 CGContextRef cgContext = NULL;
83 cgContext = (CGContextRef) gc->GetNativeContext();
85 if (cgContext)
105 HIThemeDrawTrack(&trackInfo, 0, cgContext, kHIThemeOrientationNormal);
  /external/webkit/Source/WebKit/win/
WebKitGraphics.cpp 80 CGContextRef cgContext;
93 if (!info || info->structSize < sizeof(WebTextRenderInfoWithoutShadow) || !info->cgContext || !info->description)
103 GraphicsContext context(info->cgContext);
WebKitGraphics.h 34 typedef struct CGContext* CGContextRef;
52 CGContextRef cgContext;
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 134 RetainPtr<CGContextRef> cgContext;
141 cgContext.adoptCF(CGBitmapContextCreate(m_data.m_data, size.width(), size.height(), 8, bytesPerRow, m_data.m_colorSpace, m_data.m_bitmapInfo));
147 cgContext.adoptCF(wkIOSurfaceContextCreate(m_data.m_surface.get(), size.width(), size.height(), m_data.m_colorSpace));
153 if (!cgContext)
156 m_context.set(new GraphicsContext(cgContext.get()));
GraphicsContextCG.cpp 115 void GraphicsContext::platformInit(CGContextRef cgContext)
117 m_data = new GraphicsContextPlatformPrivate(cgContext);
118 setPaintingDisabled(!cgContext);
119 if (cgContext) {
456 CGContextRef cgContext = platformContext();
463 CGContextSetStrokeColorSpace(cgContext, patternSpace.get());
466 CGContextSetStrokePattern(cgContext, platformPattern.get(), &patternAlpha);
471 CGContextRef cgContext = platformContext();
478 CGContextSetFillColorSpace(cgContext, patternSpace.get());
481 CGContextSetFillPattern(cgContext, platformPattern.get(), &patternAlpha)
    [all...]
  /external/skia/src/ports/
SkFontHost_mac_coretext.cpp     [all...]

Completed in 214 milliseconds