HomeSort by relevance Sort by last modified time
    Searched refs:fGLContext (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/skia/include/gpu/
GrContextFactory.h 98 if (fContexts[i].fGLContext) { // could be abandoned.
99 fContexts[i].fGLContext->makeCurrent();
102 if (fContexts[i].fGLContext) {
103 fContexts[i].fGLContext->unref();
111 if (fContexts[i].fGLContext) {
112 fContexts[i].fGLContext->testAbandon();
113 SkSafeSetNull(fContexts[i].fGLContext);
125 forcedGpuAPI != fContexts[i].fGLContext->gl()->fStandard)
129 fContexts[i].fGLContext->makeCurrent();
185 ctx.fGLContext = glCtx.get()
    [all...]
  /external/chromium_org/third_party/skia/include/views/
SkOSWindow_Mac.h 53 void* fGLContext;
SkOSWindow_Unix.h 23 GLXContext fGLContext;
  /external/chromium_org/third_party/skia/src/views/mac/
SkNSView.h 28 NSOpenGLContext* fGLContext;
36 @property (nonatomic, retain) NSOpenGLContext* fGLContext;
SkNSView.mm 21 @synthesize fWind, fTitle, fOptionsDelegate, fGLContext;
97 // [fGLContext update] does not appear to update if the point size has not changed,
108 if (fGLContext) {
110 [fGLContext update];
122 self.fGLContext = nil;
372 //Attaching view to fGLContext requires that the view to be part of a window,
375 if ([fGLContext view] != self && nil != self.window) {
376 [fGLContext setView:self];
382 if (nil == fGLContext) {
384 fGLContext = [[NSOpenGLContext alloc] initWithCGLContextObj:ctx]
    [all...]
SkOSWindow_Mac.mm 23 fGLContext = NULL;
42 [(NSOpenGLContext*)fGLContext update];
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL.h 35 const GrGLContext& glContext() const { return fGLContext; }
37 const GrGLInterface* glInterface() const { return fGLContext.interface(); }
38 const GrGLContextInfo& ctxInfo() const { return fGLContext; }
39 GrGLStandard glStandard() const { return fGLContext.standard(); }
40 GrGLVersion glVersion() const { return fGLContext.version(); }
41 GrGLSLGeneration glslGeneration() const { return fGLContext.glslGeneration(); }
42 const GrGLCaps& glCaps() const { return *fGLContext.caps(); }
172 bool hasExtension(const char* ext) const { return fGLContext.hasExtension(ext); }
273 GrGLContext fGLContext;
GrGpuGL.cpp 117 , fGLContext(ctx) {
124 GrGLClearErr(fGLContext.interface());
272 fGLContext.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
867 if (!renderbuffer_storage_msaa(fGLContext
    [all...]
  /external/chromium_org/third_party/skia/src/views/unix/
SkOSWindow_Unix.cpp 39 fUnixWindow.fGLContext = NULL;
335 if (NULL == fUnixWindow.fGLContext) {
338 fUnixWindow.fGLContext = glXCreateContext(fUnixWindow.fDisplay,
342 if (NULL == fUnixWindow.fGLContext) {
348 fUnixWindow.fGLContext);
359 if (NULL == fUnixWindow.fDisplay || NULL == fUnixWindow.fGLContext) {
363 glXDestroyContext(fUnixWindow.fDisplay, fUnixWindow.fGLContext);
364 fUnixWindow.fGLContext = NULL;
368 if (fUnixWindow.fDisplay && fUnixWindow.fGLContext) {
408 if (fUnixWindow.fGLContext) {
    [all...]

Completed in 492 milliseconds