Searched refs:rcEnc (Results 1 – 7 of 7) sorted by relevance
/device/generic/goldfish/opengl/system/gralloc/ |
D | gralloc.cpp | 107 renderControl_encoder_context_t *rcEnc = (hostCon ? hostCon->rcEncoder() : NULL) 115 renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \ 116 if (!rcEnc) { \ 323 if (hostCon && rcEnc) { in gralloc_alloc() 324 cb->hostHandle = rcEnc->rcCreateColorBuffer(rcEnc, w, h, glFormat); in gralloc_alloc() 371 rcEnc->rcCloseColorBuffer(rcEnc, cb->hostHandle); in gralloc_free() 459 rcEnc->rcFBPost(rcEnc, cb->hostHandle); in fb_post() 502 rcEnc->rcFBSetSwapInterval(rcEnc, interval); in fb_setSwapInterval() 541 rcEnc->rcOpenColorBuffer2(rcEnc, cb->hostHandle); in gralloc_register_buffer() 578 rcEnc->rcCloseColorBuffer(rcEnc, cb->hostHandle); in gralloc_unregister_buffer() [all …]
|
/device/generic/goldfish/opengl/system/egl/ |
D | eglDisplay.cpp | 123 renderControl_encoder_context_t *rcEnc = hcon->rcEncoder(); in initialize() local 124 if (!rcEnc) { in initialize() 133 m_hostRendererVersion = rcEnc->rcGetRendererVersion(rcEnc); in initialize() 134 EGLint status = rcEnc->rcGetEGLVersion(rcEnc, &m_major, &m_minor); in initialize() 156 m_numConfigs = rcEnc->rcGetNumConfigs(rcEnc, (uint32_t*)&m_numConfigAttribs); in initialize() 172 EGLint n = rcEnc->rcGetConfigs(rcEnc, nInts*sizeof(EGLint), (GLuint*)tmp_buf); in initialize() 257 renderControl_encoder_context_t *rcEnc = hcon->rcEncoder(); in queryHostEGLString() local 258 if (rcEnc) { in queryHostEGLString() 259 int n = rcEnc->rcQueryEGLString(rcEnc, name, NULL, 0); in queryHostEGLString() 264 n = rcEnc->rcQueryEGLString(rcEnc, name, str, -n); in queryHostEGLString()
|
D | egl.cpp | 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() [all …]
|
/device/generic/goldfish/opengl/system/OpenglSystemCommon/ |
D | HostConnection.cpp | 160 void HostConnection::setChecksumHelper(renderControl_encoder_context_t *rcEnc) { in setChecksumHelper() argument 162 int extensionSize = rcEnc->rcGetGLString(rcEnc, GL_EXTENSIONS, NULL, 0); in setChecksumHelper() 165 … extensionSize = rcEnc->rcGetGLString(rcEnc, GL_EXTENSIONS, glExtensions.get(), -extensionSize); in setChecksumHelper() 183 rcEnc->rcSelectChecksumHelper(rcEnc, checksumVersion, 0); in setChecksumHelper()
|
D | HostConnection.h | 51 void setChecksumHelper(renderControl_encoder_context_t *rcEnc);
|
/device/generic/goldfish/opengl/system/GLESv1/ |
D | gl.cpp | 45 renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \ 46 if (!rcEnc) { \ 76 rcEnc->rcBindTexture(rcEnc, in glEGLImageTargetTexture2DOES() 108 rcEnc->rcBindRenderbuffer(rcEnc, in glEGLImageTargetRenderbufferStorageOES()
|
/device/generic/goldfish/opengl/system/GLESv2/ |
D | gl2.cpp | 45 renderControl_encoder_context_t *rcEnc = hostCon->rcEncoder(); \ 46 if (!rcEnc) { \ 77 rcEnc->rcBindTexture(rcEnc, ((cb_handle_t *)(native_buffer->handle))->hostHandle); in glEGLImageTargetTexture2DOES() 107 rcEnc->rcBindRenderbuffer(rcEnc, ((cb_handle_t *)(native_buffer->handle))->hostHandle); in glEGLImageTargetRenderbufferStorageOES()
|