Home
last modified time | relevance | path

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

/aosp_15_r20/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()
DColorBuffer.cpp143 stream->putBe32(getHndl()); in onSave()
294 return vk::borrowColorBufferForComposition(getHndl(), isTarget); in borrowForComposition()
315 return vk::borrowColorBufferForDisplay(getHndl()); in borrowForDisplay()
DBuffer.h56 HandleType getHndl() const { return mHandle; } in getHndl() function
DColorBuffer.h64 HandleType getHndl() const { return mHandle; } in getHndl() function
DFrameBuffer.cpp1618 eraseDelayedCloseColorBufferLocked(cbRef->cb->getHndl(), cbRef->closedTs); in markOpened()
2563 auto contextHandle = context ? context->getHndl() : 0; in onLoad()
2576 const HandleType handle = cb->getHndl(); in onLoad()
2602 HandleType handle = window->getHndl(); in onLoad()
/aosp_15_r20/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()
/aosp_15_r20/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()
DColorBufferGl.cpp914 if (debug) fprintf(stderr, "%s: %u to %p\n", __func__, getHndl(), m_sync); in setSync()
918 if (debug) fprintf(stderr, "%s: %u sync %p\n", __func__, getHndl(), m_sync); in waitSync()
974 HandleType ColorBufferGl::getHndl() const { return mHndl; } in getHndl() function in gfxstream::gl::ColorBufferGl
977 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;
/aosp_15_r20/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglOsApi_egl.cpp273 EGLSurface getHndl() { return mHndl; } in getHndl() function in __anonc6aa49140111::EglOsEglSurface
719 if (!surface->getHndl()) { in releasePbuffer()
724 bool ret = mDispatcher.eglDestroySurface(mDisplay, surface->getHndl()); in releasePbuffer()
744 mDisplay, drawSfc ? drawSfc->getHndl() : EGL_NO_SURFACE, in makeCurrent()
745 readSfc ? readSfc->getHndl() : EGL_NO_SURFACE, in makeCurrent()
759 mDispatcher.eglSwapBuffers(mDisplay, sfc->getHndl()); in swapBuffers()
DEglSurface.h54 unsigned int getHndl() const { return m_hndl; } in getHndl() function
DEglContext.h58 unsigned int getHndl() { return m_hndl; } in getHndl() function
DEglDisplay.cpp495 unsigned int hndl = s.get()->getHndl(); in addSurface()
509 unsigned int hndl = ctx.get()->getHndl(); in addContext()
DEglContext.cpp114 rebindCtx->getHndl()))) { in ~EglContext()
DEglImp.cpp1284 EGLContext c = (EGLContext)SafePointerFromUInt(ctx->getHndl()); in eglGetCurrentContext()
1312 EGLSurface s = (EGLSurface)SafePointerFromUInt(surface->getHndl()); in eglGetCurrentSurface()
/aosp_15_r20/hardware/google/gfxstream/host/vulkan/
DPostWorkerVk.cpp45 const auto imageInfo = mFb->borrowColorBufferForDisplay(cb->getHndl()); in postImpl()