Lines Matching refs:rcEnc
106 renderControl_encoder_context_t *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL)
114 renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \
115 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()
365 if (rcEnc) { in ~egl_pbuffer_surface_t()
366 if (rcColorBuffer) rcEnc->rcCloseColorBuffer(rcEnc, rcColorBuffer); in ~egl_pbuffer_surface_t()
367 if (rcSurface) rcEnc->rcDestroyWindowSurface(rcEnc, rcSurface); in ~egl_pbuffer_surface_t()
375 rcSurface = rcEnc->rcCreateWindowSurface(rcEnc, (uintptr_t)config, in init()
382 rcColorBuffer = rcEnc->rcCreateColorBuffer(rcEnc, getWidth(), getHeight(), in init()
389 rcEnc->rcSetWindowColorBuffer(rcEnc, rcSurface, rcColorBuffer); in init()
452 int n = rcEnc->rcGetGLString(rcEnc, glEnum, NULL, 0); in getGLString()
455 n = rcEnc->rcGetGLString(rcEnc, glEnum, hostStr, -n); in getGLString()
582 …*num_config = rcEnc->rcChooseConfig(rcEnc, (EGLint*)attrib_list, attribs_size * sizeof(EGLint), (u… in eglChooseConfig()
839 rcEnc->rcBindTexture(rcEnc, pbSurface->getRcColorBuffer()); in eglBindTexImage()
869 rcEnc->rcFBSetSwapInterval(rcEnc, interval); //TODO: implement on the host in eglSwapInterval()
895 uint32_t rcContext = rcEnc->rcCreateContext(rcEnc, (uintptr_t)config, rcShareCtx, version); in eglCreateContext()
928 rcEnc->rcDestroyContext(rcEnc, context->rcContext); in eglDestroyContext()
979 if (rcEnc->rcMakeCurrent(rcEnc, ctxHandle, drawHandle, readHandle) == EGL_FALSE) { in eglMakeCurrent()