Home
last modified time | relevance | path

Searched refs:fGL (Results 1 – 8 of 8) sorted by relevance

/external/skia/tools/gpu/gl/
DGLTestContext.cpp228 SkASSERT(nullptr == fGL.get()); in ~GLTestContext()
232 SkASSERT(!fGL.get()); in init()
233 fGL.reset(gl); in init()
239 fGL.reset(nullptr); in teardown()
245 if (fGL) { in testAbandon()
246 fGL->abandon(); in testAbandon()
251 if (fGL) { in submit()
252 GR_GL_CALL(fGL.get(), Flush()); in submit()
257 if (fGL) { in finish()
258 GR_GL_CALL(fGL.get(), Finish()); in finish()
[all …]
DGLTestContext.h25 return reinterpret_cast<GrBackendContext>(fGL.get()); in backendContext()
30 const GrGLInterface *gl() const { return fGL.get(); } in gl()
93 sk_sp<const GrGLInterface> fGL;
/external/skia/experimental/iOSSampleApp/
DSkSampleUIView.mm273 fGL.fContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1];
275 fGL.fContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
278 if (!fGL.fContext || ![EAGLContext setCurrentContext:fGL.fContext])
285 glGenFramebuffers(1, &fGL.fFramebuffer);
286 glBindFramebuffer(GL_FRAMEBUFFER, fGL.fFramebuffer);
288 glGenRenderbuffers(1, &fGL.fRenderbuffer);
289 glGenRenderbuffers(1, &fGL.fStencilbuffer);
291 glBindRenderbuffer(GL_RENDERBUFFER, fGL.fRenderbuffer);
292 …glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, fGL.fRenderbuffer…
294 glBindRenderbuffer(GL_RENDERBUFFER, fGL.fStencilbuffer);
[all …]
DSkSampleUIView.h26 } fGL; variable
/external/skia/src/views/win/
DSkOSWindow_win.cpp422 fGL = GetModuleHandle("libGLESv2.dll"); in ANGLEAssembleContext()
425 bool isValid() const { return SkToBool(fEGL) && SkToBool(fGL); } in isValid()
428 HMODULE fGL; member
433 GrGLFuncPtr proc = (GrGLFuncPtr) GetProcAddress(context.fGL, name); in angle_get_gl_proc()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBITestMonkey.java669 UnicodeSet fGL; field in RBBITestMonkey.RBBILineMonkey
724 fGL = new UnicodeSet("[\\p{Line_break=GL}]"); in RBBILineMonkey()
783 fSets.add(fGL); in RBBILineMonkey()
979 if (fGL.contains(prevChar)) { in next()
987 fHY.contains(prevChar) ) && fGL.contains(thisChar)) { in next()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBITestMonkey.java668 UnicodeSet fGL; field in RBBITestMonkey.RBBILineMonkey
723 fGL = new UnicodeSet("[\\p{Line_break=GL}]"); in RBBILineMonkey()
782 fSets.add(fGL); in RBBILineMonkey()
978 if (fGL.contains(prevChar)) { in next()
986 fHY.contains(prevChar) ) && fGL.contains(thisChar)) { in next()
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp2980 UnicodeSet *fGL; member in RBBILineMonkey
3046 fGL = new UnicodeSet(UNICODE_STRING_SIMPLE("[\\p{Line_break=GL}]"), status); in RBBILineMonkey()
3104 fSets->addElement(fGL, status); in RBBILineMonkey()
3353 if (fGL->contains(prevChar)) { in next()
3361 fHY->contains(prevChar) ) && fGL->contains(thisChar)) { in next()
3655 delete fGL; in ~RBBILineMonkey()