Searched refs:fGLContext (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/third_party/skia/include/gpu/
H A DGrContextFactory.h98 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
210 SkGLContextHelper* fGLContext; member in struct:GrContextFactory::GPUContext
[all...]
/external/skia/include/gpu/
H A DGrContextFactory.h98 fContexts[i].fGLContext->makeCurrent();
100 fContexts[i].fGLContext->unref();
112 fContexts[i].fGLContext->makeCurrent();
168 ctx.fGLContext = glCtx.get();
169 ctx.fGLContext->ref();
181 return fContexts[i].fGLContext;
191 SkGLContextHelper* fGLContext; member in struct:GrContextFactory::GPUContext
/external/chromium_org/third_party/skia/src/views/mac/
H A DSkNSView.h28 NSOpenGLContext* fGLContext; variable
36 @property (nonatomic, retain) NSOpenGLContext* fGLContext; variable
H A DSkNSView.mm21 @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
[all...]
H A DSkOSWindow_Mac.mm23 fGLContext = NULL;
42 [(NSOpenGLContext*)fGLContext update];
/external/skia/src/views/mac/
H A DSkNSView.h28 NSOpenGLContext* fGLContext; variable
36 @property (nonatomic, retain) NSOpenGLContext* fGLContext; variable
H A DSkOSWindow_Mac.mm23 fGLContext = NULL;
42 [(NSOpenGLContext*)fGLContext update];
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGpuGL.h35 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; member in class:GrGpuGL
H A DGrGpuGL.cpp117 , fGLContext(ctx) {
124 GrGLClearErr(fGLContext.interface());
272 fGLContext.hasExtension("GL_ARM_shader_framebuffer_fetch")) {
867 if (!renderbuffer_storage_msaa(fGLContext,
885 fGLContext.caps()->markConfigAsValidColorAttachment(desc->fConfig);
908 fGLContext.caps()->markConfigAsValidColorAttachment(desc->fConfig);
1191 created = renderbuffer_storage_msaa(fGLContext,
1279 fGLContext.caps()->markColorConfigAndStencilFormatAsVerified(
/external/chromium_org/third_party/skia/include/views/
H A DSkOSWindow_Mac.h53 void* fGLContext; member in class:SkOSWindow
H A DSkOSWindow_Unix.h23 GLXContext fGLContext; member in struct:SkUnixWindow
/external/skia/include/views/
H A DSkOSWindow_Mac.h53 void* fGLContext; member in class:SkOSWindow
H A DSkOSWindow_Unix.h23 GLXContext fGLContext; member in struct:SkUnixWindow
/external/chromium_org/third_party/skia/src/views/unix/
H A DSkOSWindow_Unix.cpp39 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...]
/external/skia/src/views/unix/
H A DSkOSWindow_Unix.cpp39 fUnixWindow.fGLContext = NULL;
325 if (NULL == fUnixWindow.fGLContext) {
328 fUnixWindow.fGLContext = glXCreateContext(fUnixWindow.fDisplay,
332 if (NULL == fUnixWindow.fGLContext) {
338 fUnixWindow.fGLContext);
349 if (NULL == fUnixWindow.fDisplay || NULL == fUnixWindow.fGLContext) {
353 glXDestroyContext(fUnixWindow.fDisplay, fUnixWindow.fGLContext);
354 fUnixWindow.fGLContext = NULL;
358 if (NULL != fUnixWindow.fDisplay && NULL != fUnixWindow.fGLContext) {
398 if (NULL != fUnixWindow.fGLContext) {
[all...]
/external/skia/src/gpu/gl/
H A DGrGpuGL.h36 const GrGLContext& glContext() const { return fGLContext; }
38 const GrGLInterface* glInterface() const { return fGLContext.interface(); }
39 const GrGLContextInfo& ctxInfo() const { return fGLContext; }
40 GrGLStandard glStandard() const { return fGLContext.standard(); }
41 GrGLVersion glVersion() const { return fGLContext.version(); }
42 GrGLSLGeneration glslGeneration() const { return fGLContext.glslGeneration(); }
43 const GrGLCaps& glCaps() const { return *fGLContext.caps(); }
195 bool hasExtension(const char* ext) const { return fGLContext.hasExtension(ext); }
293 GrGLContext fGLContext; member in class:GrGpuGL
H A DGrGpuGL.cpp118 , fGLContext(ctx) {
126 GrGLClearErr(fGLContext.interface());
874 if (!renderbuffer_storage_msaa(fGLContext,
891 fGLContext.caps()->markConfigAsValidColorAttachment(desc->fConfig);
913 fGLContext.caps()->markConfigAsValidColorAttachment(desc->fConfig);
1196 created = renderbuffer_storage_msaa(fGLContext,
1283 fGLContext.caps()->markColorConfigAndStencilFormatAsVerified(

Completed in 3360 milliseconds