• Home
  • Raw
  • Download

Lines Matching refs:rcEnc

141     ExtendedRCEncoderContext *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL)
149 ExtendedRCEncoderContext *rcEnc = hostCon->rcEncoder(); \
150 if (!rcEnc) { \
166 ExtendedRCEncoderContext *rcEnc = hostCon->rcEncoder(); \
167 if (!rcEnc) { \
218 switch (rcEnc->getGLESMaxVersion()) { in EGLContext_t()
412 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)s_display.getIndexOfConfig(config), in init()
419 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in init()
440 if (rcSurface && rcEnc) { in ~egl_window_surface_t()
441 rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_window_surface_t()
473 rcEnc->rcCreateSyncKHR(rcEnc, type, in createNativeSync()
542 rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface); in swapBuffers()
547 if (rcEnc->hasNativeSync()) { in swapBuffers()
548 rcEnc->rcFlushWindowColorBufferAsync(rcEnc, rcSurface); in swapBuffers()
551 rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface); in swapBuffers()
581 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in swapBuffers()
625 if (rcEnc) { in ~egl_pbuffer_surface_t()
630 rcEnc->rcCloseColorBuffer(rcEnc, rcColorBuffer); in ~egl_pbuffer_surface_t()
633 if (rcSurface) rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_pbuffer_surface_t()
672 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)s_display.getIndexOfConfig(config), in init()
679 rcColorBuffer = grallocHelper->createColorBuffer(rcEnc, getWidth(), getHeight(), pixelFormat); in init()
691 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, rcColorBuffer); in init()
734 int n = rcEnc->rcGetGLString(rcEnc, GL_EXTENSIONS, NULL, 0); in getExtStringArray()
737 n = rcEnc->rcGetGLString(rcEnc, GL_EXTENSIONS, hostStr, -n); in getExtStringArray()
838 int n = rcEnc->rcGetGLString(rcEnc, glEnum, NULL, 0); in getGLString()
841 n = rcEnc->rcGetGLString(rcEnc, glEnum, hostStr, -n); in getGLString()
991 *num_config = rcEnc->rcChooseConfig(rcEnc, in eglChooseConfig()
1337 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in s_eglReleaseThreadImpl()
1442 rcEnc->rcBindTexture(rcEnc, pbSurface->getRcColorBuffer()); in eglBindTexImage()
1472 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host in eglSwapInterval()
1531 if (rcEnc->getGLESMaxVersion() >= GLES_MAX_VERSION_3_0) { in eglCreateContext()
1544 switch (rcEnc->getGLESMaxVersion()) { in eglCreateContext()
1570 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_0) { in eglCreateContext()
1578 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_1) { in eglCreateContext()
1584 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_2) { in eglCreateContext()
1619 …uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uintptr_t)s_display.getIndexOfConfig(config), … in eglCreateContext()
1650 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in eglDestroyContext()
1710 if (rcEnc->rcMakeCurrent(rcEnc, ctxHandle, drawHandle, readHandle) == EGL_FALSE) { in eglMakeCurrent()
2041 uint32_t img = rcEnc->rcCreateClientImage(rcEnc, ctxHandle, target, texture); in eglCreateImageKHR()
2080 return rcEnc->rcDestroyClientImage(rcEnc, host_egl_image); in eglDestroyImageKHR()
2100 !rcEnc->hasNativeSync())) { in eglCreateSyncKHR()
2153 if (rcEnc->hasNativeSync()) { in eglCreateSyncKHR()
2183 if (!rcEnc->hasNativeSync()) { in eglCreateSyncKHR()
2209 if (rcEnc->hasNativeSync()) { in eglDestroySyncKHR()
2210 rcEnc->rcDestroySyncKHR(rcEnc, sync->handle); in eglDestroySyncKHR()
2236 if (rcEnc->hasNativeSync()) { in eglClientWaitSyncKHR()
2237 retval = rcEnc->rcClientWaitSyncKHR in eglClientWaitSyncKHR()
2238 (rcEnc, sync->handle, flags, timeout); in eglClientWaitSyncKHR()
2275 if (rcEnc->hasNativeSyncV4()) { in eglGetSyncAttribKHR()
2276 if (rcEnc->rcIsSyncSignaled(rcEnc, sync->handle)) { in eglGetSyncAttribKHR()
2320 if (rcEnc->hasNativeSyncV3()) { in eglWaitSyncKHR()
2322 rcEnc->rcWaitSyncKHR(rcEnc, sync->handle, flags); in eglWaitSyncKHR()