Home | History | Annotate | Download | only in objc

Lines Matching refs:_context

167   EAGLContext* _context;
169 NSOpenGLContext* _context;
202 _context = context;
228 [_context flushBuffer];
272 NSAssert(_context, @"context shouldn't be nil");
274 if ([EAGLContext currentContext] != _context) {
275 [EAGLContext setCurrentContext:_context];
278 if ([NSOpenGLContext currentContext] != _context) {
279 [_context makeCurrentContext];
391 BOOL hasUnpackRowLength = _context.API == kEAGLRenderingAPIOpenGLES3;