Searched refs:fGL (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/gpu/gl/ |
D | SkGLContext.cpp | 52 SkASSERT(nullptr == fGL.get()); in ~SkGLContext() 57 SkASSERT(!fGL.get()); in init() 58 fGL.reset(gl); in init() 73 fGL.reset(nullptr); in teardown() 103 if (fGL) { in testAbandon() 104 fGL->abandon(); in testAbandon() 163 if (!(kGL_GrGLStandard == fGL->fStandard && GrGLGetVersion(fGL) >= GR_GL_VER(3, 1)) && in createTextureRectangle() 164 !fGL->fExtensions.has("GL_ARB_texture_rectangle")) { in createTextureRectangle() 168 if (GrGLGetGLSLVersion(fGL) < GR_GLSL_VER(1, 40)) { in createTextureRectangle() 173 GR_GL_CALL(fGL, GenTextures(1, &id)); in createTextureRectangle() [all …]
|
/external/skia/experimental/iOSSampleApp/ |
D | SkSampleUIView.mm | 264 fGL.fContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1]; 266 fGL.fContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; 269 if (!fGL.fContext || ![EAGLContext setCurrentContext:fGL.fContext]) 276 glGenFramebuffers(1, &fGL.fFramebuffer); 277 glBindFramebuffer(GL_FRAMEBUFFER, fGL.fFramebuffer); 279 glGenRenderbuffers(1, &fGL.fRenderbuffer); 280 glGenRenderbuffers(1, &fGL.fStencilbuffer); 282 glBindRenderbuffer(GL_RENDERBUFFER, fGL.fRenderbuffer); 283 …glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, fGL.fRenderbuffer… 285 glBindRenderbuffer(GL_RENDERBUFFER, fGL.fStencilbuffer); [all …]
|
D | SkSampleUIView.h | 26 } fGL; variable
|
/external/skia/tools/kilobench/ |
D | kilobench.cpp | 155 fGL->makeCurrent(); in setup() 157 SK_GL(*fGL, Finish()); in setup() 163 if (fGL) { in endTiming() 164 SK_GL(*fGL, Flush()); in endTiming() 166 fGL->swapBuffers(); in endTiming() 168 fGL->waitOnSyncOrSwap(); in endTiming() 173 SK_GL(*fGL, Finish()); in finish() 177 if (!fGL->getMaxGpuFrameLag(maxFrameLag)) { in needsFrameTiming() 198 fGL = factory->getContextInfo(ctxType, ctxOptions).fGLContext; in init() 204 SkASSERT(fGL->fenceSyncSupport()); in init() [all …]
|
/external/skia/include/gpu/gl/ |
D | SkGLContext.h | 26 const GrGLInterface* gl() const { return fGL.get(); } in gl() 118 SkAutoTUnref<const GrGLInterface> fGL; variable
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 543 UnicodeSet fGL; field in RBBITestMonkey.RBBILineMonkey 594 fGL = new UnicodeSet("[\\p{Line_break=GL}]"); in RBBILineMonkey() 648 fSets.add(fGL); in RBBILineMonkey() 827 if (fGL.contains(prevChar)) { in next() 835 fHY.contains(prevChar) ) && fGL.contains(thisChar)) { in next()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBITestMonkey.java | 547 UnicodeSet fGL; field in RBBITestMonkey.RBBILineMonkey 598 fGL = new UnicodeSet("[\\p{Line_break=GL}]"); in RBBILineMonkey() 652 fSets.add(fGL); in RBBILineMonkey() 831 if (fGL.contains(prevChar)) { in next() 839 fHY.contains(prevChar) ) && fGL.contains(thisChar)) { in next()
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbitst.cpp | 2906 UnicodeSet *fGL; member in RBBILineMonkey 2958 fGL = new UnicodeSet(UNICODE_STRING_SIMPLE("[\\p{Line_break=GL}]"), status); in RBBILineMonkey() 3013 fSets->addElement(fGL, status); in RBBILineMonkey() 3245 if (fGL->contains(prevChar)) { in next() 3253 fHY->contains(prevChar) ) && fGL->contains(thisChar)) { in next() 3528 delete fGL; in ~RBBILineMonkey()
|