Home
last modified time | relevance | path

Searched refs:getHndl (Results 1 – 19 of 19) sorted by relevance

/hardware/google/gfxstream/host/
DRenderThreadInfoGl.cpp58 stream->putBe32(currContext->getHndl()); in onSave()
63 stream->putBe32(currDrawSurf->getHndl()); in onSave()
68 stream->putBe32(currReadSurf->getHndl()); in onSave()
130 const HandleType ctx = currContext ? currContext->getHndl() : 0; in postLoadRefreshCurrentContextSurfacePtrs()
131 const HandleType draw = currDrawSurf ? currDrawSurf->getHndl() : 0; in postLoadRefreshCurrentContextSurfacePtrs()
132 const HandleType read = currReadSurf ? currReadSurf->getHndl() : 0; in postLoadRefreshCurrentContextSurfacePtrs()
DBuffer.h55 HandleType getHndl() const { return mHandle; } in getHndl() function
DColorBuffer.cpp142 stream->putBe32(getHndl()); in onSave()
285 return vk::borrowColorBufferForComposition(getHndl(), isTarget); in borrowForComposition()
306 return vk::borrowColorBufferForDisplay(getHndl()); in borrowForDisplay()
DColorBuffer.h63 HandleType getHndl() const { return mHandle; } in getHndl() function
DFrameBuffer.cpp1572 eraseDelayedCloseColorBufferLocked(cbRef->cb->getHndl(), cbRef->closedTs); in markOpened()
2507 auto contextHandle = context ? context->getHndl() : 0; in onLoad()
2520 const HandleType handle = cb->getHndl(); in onLoad()
2546 HandleType handle = window->getHndl(); in onLoad()
/hardware/google/gfxstream/host/tests/
DGLSnapshotTestDispatch.cpp102 threadInfo->m_glInfo->currContext ? threadInfo->m_glInfo->currContext->getHndl() in loadSnapshot()
104 threadInfo->m_glInfo->currDrawSurf ? threadInfo->m_glInfo->currDrawSurf->getHndl() in loadSnapshot()
106 threadInfo->m_glInfo->currReadSurf ? threadInfo->m_glInfo->currReadSurf->getHndl() in loadSnapshot()
/hardware/google/gfxstream/host/gl/
DEmulatedEglWindowSurface.cpp206 HandleType EmulatedEglWindowSurface::getHndl() const { in getHndl() function in gfxstream::gl::EmulatedEglWindowSurface
213 stream->putBe32(obj->getHndl()); in saveHndlOrNull()
220 stream->putBe32(getHndl()); in onSave()
DBufferGl.h38 HandleType getHndl() const { return mHandle; } in getHndl() function
DEmulatedEglContext.h72 HandleType getHndl() const { return mHndl; } in getHndl() function
DEmulatedEglWindowSurface.h106 HandleType getHndl() const;
DColorBufferGl.h201 HandleType getHndl() const;
DColorBufferGl.cpp882 if (debug) fprintf(stderr, "%s: %u to %p\n", __func__, getHndl(), m_sync); in setSync()
886 if (debug) fprintf(stderr, "%s: %u sync %p\n", __func__, getHndl(), m_sync); in waitSync()
942 HandleType ColorBufferGl::getHndl() const { return mHndl; } in getHndl() function in gfxstream::gl::ColorBufferGl
945 stream->putBe32(getHndl()); in onSave()
/hardware/google/gfxstream/host/vulkan/
DPostWorkerVk.cpp45 const auto imageInfo = mFb->borrowColorBufferForDisplay(cb->getHndl()); in postImpl()
/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglSurface.h54 unsigned int getHndl() const { return m_hndl; } in getHndl() function
DEglContext.h58 unsigned int getHndl() { return m_hndl; } in getHndl() function
DEglOsApi_egl.cpp273 EGLSurface getHndl() { return mHndl; } in getHndl() function in __anon12216d320111::EglOsEglSurface
717 if (!surface->getHndl()) { in releasePbuffer()
722 bool ret = mDispatcher.eglDestroySurface(mDisplay, surface->getHndl()); in releasePbuffer()
742 mDisplay, drawSfc ? drawSfc->getHndl() : EGL_NO_SURFACE, in makeCurrent()
743 readSfc ? readSfc->getHndl() : EGL_NO_SURFACE, in makeCurrent()
757 mDispatcher.eglSwapBuffers(mDisplay, sfc->getHndl()); in swapBuffers()
DEglContext.cpp114 rebindCtx->getHndl()))) { in ~EglContext()
DEglDisplay.cpp494 unsigned int hndl = s.get()->getHndl(); in addSurface()
508 unsigned int hndl = ctx.get()->getHndl(); in addContext()
DEglImp.cpp1278 EGLContext c = (EGLContext)SafePointerFromUInt(ctx->getHndl()); in eglGetCurrentContext()
1306 EGLSurface s = (EGLSurface)SafePointerFromUInt(surface->getHndl()); in eglGetCurrentSurface()