Lines Matching refs:rcEnc

133     ExtendedRCEncoderContext *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL)
141 ExtendedRCEncoderContext *rcEnc = hostCon->rcEncoder(); \
142 if (!rcEnc) { \
153 ExtendedRCEncoderContext *rcEnc = hostCon->rcEncoder(); \
154 if (!rcEnc) { \
193 switch (rcEnc->getGLESMaxVersion()) { in EGLContext_t()
374 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config, in init()
380 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in init()
403 if (rcSurface && rcEnc) { in ~egl_window_surface_t()
404 rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_window_surface_t()
435 rcEnc->rcCreateSyncKHR(rcEnc, type, in createNativeSync()
502 rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface); in swapBuffers()
507 if (rcEnc->hasNativeSync()) { in swapBuffers()
508 rcEnc->rcFlushWindowColorBufferAsync(rcEnc, rcSurface); in swapBuffers()
511 rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface); in swapBuffers()
541 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in swapBuffers()
584 if (rcEnc) { in ~egl_pbuffer_surface_t()
585 if (rcColorBuffer) rcEnc->rcCloseColorBuffer(rcEnc, rcColorBuffer); in ~egl_pbuffer_surface_t()
586 if (rcSurface) rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_pbuffer_surface_t()
594 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config, in init()
601 rcColorBuffer = rcEnc->rcCreateColorBuffer(rcEnc, getWidth(), getHeight(), pixelFormat); in init()
607 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, rcColorBuffer); in init()
667 int n = rcEnc->rcGetGLString(rcEnc, glEnum, NULL, 0); in getGLString()
670 n = rcEnc->rcGetGLString(rcEnc, glEnum, hostStr, -n); in getGLString()
814 *num_config = rcEnc->rcChooseConfig(rcEnc, in eglChooseConfig()
1146 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in s_eglReleaseThreadImpl()
1248 rcEnc->rcBindTexture(rcEnc, pbSurface->getRcColorBuffer()); in eglBindTexImage()
1278 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host in eglSwapInterval()
1343 if (rcEnc->getGLESMaxVersion() >= GLES_MAX_VERSION_3_0) { in eglCreateContext()
1356 switch (rcEnc->getGLESMaxVersion()) { in eglCreateContext()
1382 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_0) { in eglCreateContext()
1390 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_1) { in eglCreateContext()
1396 if (rcEnc->getGLESMaxVersion() < GLES_MAX_VERSION_3_2) { in eglCreateContext()
1431 … uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uintptr_t)config, rcShareCtx, rcMajorVersion); in eglCreateContext()
1464 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in eglDestroyContext()
1520 if (rcEnc->rcMakeCurrent(rcEnc, ctxHandle, drawHandle, readHandle) == EGL_FALSE) { in eglMakeCurrent()
1821 uint32_t img = rcEnc->rcCreateClientImage(rcEnc, ctxHandle, target, texture); in eglCreateImageKHR()
1860 return rcEnc->rcDestroyClientImage(rcEnc, host_egl_image); in eglDestroyImageKHR()
1880 !rcEnc->hasNativeSync())) { in eglCreateSyncKHR()
1933 if (rcEnc->hasNativeSync()) { in eglCreateSyncKHR()
1963 if (!rcEnc->hasNativeSync()) { in eglCreateSyncKHR()
1989 if (rcEnc->hasNativeSync()) { in eglDestroySyncKHR()
1990 rcEnc->rcDestroySyncKHR(rcEnc, sync->handle); in eglDestroySyncKHR()
2016 if (rcEnc->hasNativeSync()) { in eglClientWaitSyncKHR()
2017 retval = rcEnc->rcClientWaitSyncKHR in eglClientWaitSyncKHR()
2018 (rcEnc, sync->handle, flags, timeout); in eglClientWaitSyncKHR()