Lines Matching refs:fb
90 FrameBuffer* fb = FrameBuffer::getFB(); in onLoad() local
91 assert(fb); in onLoad()
99 fb->lock(); in onLoad()
100 currContext = fb->getContext_locked(ctxHndl); in onLoad()
101 currDrawSurf = fb->getWindowSurface_locked(drawSurf); in onLoad()
102 currReadSurf = fb->getWindowSurface_locked(readSurf); in onLoad()
103 fb->unlock(); in onLoad()
121 FrameBuffer* fb = FrameBuffer::getFB(); in postLoadRefreshCurrentContextSurfacePtrs() local
122 assert(fb); in postLoadRefreshCurrentContextSurfacePtrs()
124 fb->lock(); in postLoadRefreshCurrentContextSurfacePtrs()
125 currContext = fb->getContext_locked(currContextHandleFromLoad); in postLoadRefreshCurrentContextSurfacePtrs()
126 currDrawSurf = fb->getWindowSurface_locked(currDrawSurfHandleFromLoad); in postLoadRefreshCurrentContextSurfacePtrs()
127 currReadSurf = fb->getWindowSurface_locked(currReadSurfHandleFromLoad); in postLoadRefreshCurrentContextSurfacePtrs()
128 fb->unlock(); in postLoadRefreshCurrentContextSurfacePtrs()
133 fb->bindContext(ctx, draw, read); in postLoadRefreshCurrentContextSurfacePtrs()