Home
last modified time | relevance | path

Searched refs:fInterface (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/gl/
DGrGLContext.h48 GrGLStandard standard() const { return fInterface->fStandard; } in standard()
65 return fInterface->hasExtension(ext); in hasExtension()
68 const GrGLExtensions& extensions() const { return fInterface->fExtensions; } in extensions()
76 SkAutoTUnref<const GrGLInterface> fInterface;
106 const GrGLInterface* interface() const { return fInterface.get(); } in interface()
DGrGLContext.cpp13 fInterface.reset(SkSafeRef(that.fInterface.get())); in operator =()
67 fInterface.reset(SkRef(interface)); in initialize()
75 bool GrGLContextInfo::isInitialized() const { return SkToBool(fInterface.get()); } in isInitialized()
78 fInterface.reset(NULL); in reset()
/external/skia/example/
DHelloWorld.cpp46 SkSafeUnref(fInterface); in tearDownBackend()
47 fInterface = NULL; in tearDownBackend()
73 fInterface = GrGLCreateNativeInterface(); in setUpBackend()
75 SkASSERT(NULL != fInterface); in setUpBackend()
77 fContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext)fInterface); in setUpBackend()
86 fRenderTarget = this->renderTarget(fAttachmentInfo, fInterface, fContext); in setUpRenderTarget()
DHelloWorld.h67 const GrGLInterface* fInterface; variable