Lines Matching refs:rcEnc
107 renderControl_encoder_context_t *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL)
115 renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \
116 if (!rcEnc) { \
272 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config, in init()
278 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in init()
299 if (rcSurface && rcEnc) { in ~egl_window_surface_t()
300 rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_window_surface_t()
317 rcEnc->rcFlushWindowColorBuffer(rcEnc, rcSurface); in swapBuffers()
325 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, in swapBuffers()
368 if (rcEnc) { in ~egl_pbuffer_surface_t()
369 if (rcColorBuffer) rcEnc->rcCloseColorBuffer(rcEnc, rcColorBuffer); in ~egl_pbuffer_surface_t()
370 if (rcSurface) rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_pbuffer_surface_t()
378 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config, in init()
385 rcColorBuffer = rcEnc->rcCreateColorBuffer(rcEnc, getWidth(), getHeight(), in init()
392 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, rcColorBuffer); in init()
459 int n = rcEnc->rcGetGLString(rcEnc, glEnum, NULL, 0); in getGLString()
462 n = rcEnc->rcGetGLString(rcEnc, glEnum, hostStr, -n); in getGLString()
589 …*num_config = rcEnc->rcChooseConfig(rcEnc, (EGLint*)attrib_list, attribs_size * sizeof(EGLint), (u… in eglChooseConfig()
871 rcEnc->rcBindTexture(rcEnc, pbSurface->getRcColorBuffer()); in eglBindTexImage()
901 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host in eglSwapInterval()
932 uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uintptr_t)config, rcShareCtx, version); in eglCreateContext()
965 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in eglDestroyContext()
1016 if (rcEnc->rcMakeCurrent(rcEnc, ctxHandle, drawHandle, readHandle) == EGL_FALSE) { in eglMakeCurrent()
1256 uint32_t img = rcEnc->rcCreateClientImage(rcEnc, ctxHandle, target, texture); in eglCreateImageKHR()
1295 return rcEnc->rcDestroyClientImage(rcEnc, host_egl_image); in eglDestroyImageKHR()