Searched refs:fGL (Results 1 – 8 of 8) sorted by relevance
/external/skia/tools/gpu/gl/ |
D | GLTestContext.cpp | 225 SkASSERT(nullptr == fGL.get()); in ~GLTestContext() 229 SkASSERT(!fGL.get()); in init() 230 fGL.reset(gl); in init() 236 fGL.reset(nullptr); in teardown() 242 if (fGL) { in testAbandon() 243 fGL->abandon(); in testAbandon() 248 if (fGL) { in submit() 249 GR_GL_CALL(fGL.get(), Flush()); in submit() 254 if (fGL) { in finish() 255 GR_GL_CALL(fGL.get(), Finish()); in finish() [all …]
|
D | GLTestContext.h | 25 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/ |
D | SkSampleUIView.mm | 273 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 …]
|
D | SkSampleUIView.h | 26 } fGL; variable
|
/external/skia/src/views/win/ |
D | SkOSWindow_win.cpp | 424 fGL = GetModuleHandle("libGLESv2.dll"); in ANGLEAssembleContext() 427 bool isValid() const { return SkToBool(fEGL) && SkToBool(fGL); } in isValid() 430 HMODULE fGL; member 435 GrGLFuncPtr proc = (GrGLFuncPtr) GetProcAddress(context.fGL, name); in angle_get_gl_proc()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 668 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/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 669 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/icu4c/source/test/intltest/ |
D | rbbitst.cpp | 2980 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()
|