Searched refs:currentContext (Results 1 - 25 of 73) sorted by relevance

123

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGShading Demo/
H A DMyQuartzView.py126 currentContext = NSGraphicsContext.currentContext().graphicsPort()
149 CGContextBeginPage(currentContext, bounds)
151 CGContextTranslateCTM(currentContext,
153 CGContextConcatCTM(currentContext, m);
154 CGContextTranslateCTM(currentContext, -0.5, -0.5);
156 CGContextSaveGState(currentContext);
158 CGContextClipToRect(currentContext, CGRectMake(0, 0, 1, 1));
159 CGContextSetRGBFillColor(currentContext, 0.7, 0.7, 0.9, 1);
160 CGContextFillRect(currentContext, CGRectMak
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGShading Demo/
H A DMyQuartzView.py126 currentContext = NSGraphicsContext.currentContext().graphicsPort()
149 CGContextBeginPage(currentContext, bounds)
151 CGContextTranslateCTM(currentContext,
153 CGContextConcatCTM(currentContext, m);
154 CGContextTranslateCTM(currentContext, -0.5, -0.5);
156 CGContextSaveGState(currentContext);
158 CGContextClipToRect(currentContext, CGRectMake(0, 0, 1, 1));
159 CGContextSetRGBFillColor(currentContext, 0.7, 0.7, 0.9, 1);
160 CGContextFillRect(currentContext, CGRectMak
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DLocalCurrentGraphicsContext.mm34 if (cgContext == [[NSGraphicsContext currentContext] graphicsPort]) {
39 m_savedNSGraphicsContext = [[NSGraphicsContext currentContext] retain];
H A DWebCoreNSCellExtras.m35 CGContextRef cgContext = (CGContextRef)[[NSGraphicsContext currentContext] graphicsPort];
/macosx-10.9.5/WebKit-7537.78.2/mac/WebInspector/
H A DWebNodeHighlightView.mm73 ASSERT([[NSGraphicsContext currentContext] isFlipped]);
75 GraphicsContext context((PlatformGraphicsContext*)[[NSGraphicsContext currentContext] graphicsPort]);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DGLContext.cpp58 inline ThreadGlobalGLContext* currentContext() function in namespace:WebCore
179 if (this == currentContext()->context())
180 currentContext()->setContext(0);
186 currentContext()->setContext(this);
192 return currentContext()->context();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DGraphicsContext3DQt.cpp112 m_platformContext = QOpenGLContext::currentContext();
226 QOpenGLContext* currentContext = QOpenGLContext::currentContext(); local
227 QSurface* currentSurface = currentContext->surface();
235 currentContext->makeCurrent(currentSurface);
330 const QOpenGLContext* currentContext = QOpenGLContext::currentContext(); local
332 if (currentContext && currentContext != m_platformContext) {
333 currentSurface = currentContext
350 const QOpenGLContext* currentContext = QOpenGLContext::currentContext(); local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSContext.h63 + (JSContext *)currentContext; variable
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CIExposureSample/
H A DCIExposureView.rb21 context = NSGraphicsContext.currentContext.CIContext
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageView.py19 ctx = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py28 nsctx = NSGraphicsContext.currentContext()
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py19 context = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageView.py19 ctx = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/CocoaDrawingShell/
H A DMyView.py28 nsctx = NSGraphicsContext.currentContext()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/TLayer/
H A DCircle.py19 context = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperImageBuffer.h63 virtual IntRect clipBounds() OVERRIDE { return currentContext()->clipBounds(); }
67 inline GraphicsContext* currentContext() function in class:WebCore::TextureMapperImageBuffer
H A DTextureMapperImageBuffer.cpp92 GraphicsContext* context = currentContext();
119 GraphicsContext* context = currentContext();
139 GraphicsContext* context = currentContext();
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGLengthContext.cpp212 const ContainerNode* currentContext = context; local
213 while (currentContext) {
214 if (currentContext->renderer())
215 return currentContext->renderer()->style();
216 currentContext = currentContext->parentNode();
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DGraphicsContextMac.mm166 // FIXME: This code should not use NSGraphicsContext currentContext
173 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
174 CGContextRef context = (CGContextRef)[currentContext graphicsPort];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKPrintingView.mm443 NSGraphicsContext *nsGraphicsContext = [NSGraphicsContext currentContext];
513 CGContextRef cgContext = static_cast<CGContextRef>([[NSGraphicsContext currentContext] graphicsPort]);
552 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
561 [NSGraphicsContext setCurrentContext:currentContext];
591 NSGraphicsContext *currentContext = [NSGraphicsContext currentContext];
592 [currentContext saveGraphicsState];
595 [currentContext restoreGraphicsState];
597 [currentContext saveGraphicsStat
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/CGPDFViewer/
H A DPDFView.rb19 gc = NSGraphicsContext.currentContext.graphicsPort
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/Quartz2DBasics/
H A DMyView.py12 context = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Image/CIHazeFilterSample/
H A DHazeFilterView.py25 context = NSGraphicsContext.currentContext().CIContext()
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DFrameworkTextDrawing.py21 context = NSGraphicsContext.currentContext().graphicsPort()
142 context = NSGraphicsContext.currentContext().graphicsPort()
202 context = NSGraphicsContext.currentContext().graphicsPort()
306 context = NSGraphicsContext.currentContext().graphicsPort()
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/Quartz2DBasics/
H A DMyView.py12 context = NSGraphicsContext.currentContext().graphicsPort()

Completed in 310 milliseconds

123