/sdk/emulator/opengl/tests/EGL_host_wrapper/ |
D | egl.cpp | 119 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) in eglDestroySurface() argument 121 return getDispatch()->eglDestroySurface(dpy, surface); in eglDestroySurface() 124 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) in eglQuerySurface() argument 126 return getDispatch()->eglQuerySurface(dpy, surface, attribute, value); in eglQuerySurface() 154 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) in eglSurfaceAttrib() argument 156 return getDispatch()->eglSurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib() 159 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() argument 161 return getDispatch()->eglBindTexImage(dpy, surface, buffer); in eglBindTexImage() 164 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglReleaseTexImage() argument 166 return getDispatch()->eglReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage() [all …]
|
/sdk/emulator/opengl/host/libs/Translator/include/EGL/ |
D | egl.h | 273 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface); 274 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface, 288 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, 290 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer); 291 EGLAPI EGLBoolean EGLAPIENTRY eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer); 312 EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface); 313 EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers(EGLDisplay dpy, EGLSurface surface,
|
D | eglext.h | 71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLi… 72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface); 74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface,… 75 …edef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface);
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
D | EglContext.cpp | 25 bool EglContext::usingSurface(SurfacePtr surface) { in usingSurface() argument 26 return surface.Ptr() == m_read.Ptr() || surface.Ptr() == m_draw.Ptr(); in usingSurface()
|
D | EglImp.cpp | 573 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay display, EGLSurface surface) { in eglDestroySurface() argument 575 SurfacePtr srfc = dpy->getSurface(surface); in eglDestroySurface() 580 dpy->removeSurface(surface); in eglDestroySurface() 584 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay display, EGLSurface surface, in eglQuerySurface() argument 587 VALIDATE_SURFACE(surface,srfc); in eglQuerySurface() 595 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay display, EGLSurface surface, in eglSurfaceAttrib() argument 598 VALIDATE_SURFACE(surface,srfc); in eglSurfaceAttrib() 775 EGLAPI EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay display, EGLSurface surface) { in eglSwapBuffers() argument 777 VALIDATE_SURFACE(surface,Srfc); in eglSwapBuffers() 835 SurfacePtr surface = readdraw == EGL_READ ? ctx->read() : ctx->draw(); in eglGetCurrentSurface() local [all …]
|
D | EglContext.h | 42 bool usingSurface(SurfacePtr surface);
|
D | EglDisplay.h | 50 SurfacePtr getSurface(EGLSurface surface);
|
D | EglDisplay.cpp | 142 SurfacePtr EglDisplay::getSurface(EGLSurface surface) { in getSurface() argument 145 unsigned int hndl = ToTargetCompatibleHandle((uintptr_t)surface); in getSurface()
|
/sdk/emulator/opengl/tests/ut_renderer/ |
D | Renderer.cpp | 66 … RendererSurface *surface = RendererSurface::create(m_dpy, RendererSurface::CONFIG_DEPTH, m_nw); in createSurface() local 67 if (surface == NULL) { in createSurface() 71 m_surfaces.insert(SurfaceMap::value_type(handle, surface)); in createSurface() 173 const ClientHandle &surface) in swapBuffers() argument 177 SurfaceMap::iterator s = m_surfaces.find(surface); in swapBuffers()
|
D | RendererSurface.h | 40 …RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config)… in RendererSurface() argument 44 m_eglSurface(surface) in RendererSurface()
|
D | Renderer.h | 48 int swapBuffers(RenderingThread *thread, const ClientHandle & surface);
|
D | RenderingThread.h | 74 static void s_swapBuffers(uint32_t pid, uint32_t surface);
|
D | RenderingThread.cpp | 252 void RenderingThread::s_swapBuffers(uint32_t pid, uint32_t surface) in s_swapBuffers() argument 254 Renderer::instance()->swapBuffers(m_tls, Renderer::ClientHandle(pid, surface)); in s_swapBuffers()
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
D | FrameBuffer.cpp | 33 EGLSurface surface; in getGLES2ExtensionString() local 53 surface = s_egl.eglCreatePbufferSurface(p_dpy, config, pbufAttribs); in getGLES2ExtensionString() 54 if (surface == EGL_NO_SURFACE) { in getGLES2ExtensionString() 67 s_egl.eglDestroySurface(p_dpy, surface); in getGLES2ExtensionString() 71 if (!s_egl.eglMakeCurrent(p_dpy, surface, surface, ctx)) { in getGLES2ExtensionString() 72 s_egl.eglDestroySurface(p_dpy, surface); in getGLES2ExtensionString() 84 s_egl.eglDestroySurface(p_dpy, surface); in getGLES2ExtensionString()
|
/sdk/emulator/opengl/tests/ut_rendercontrol_dec/ |
D | ut_rendercontrol.in | 4 GL_ENTRY(void, swapBuffers, uint32_t pid, uint32_t surface)
|
/sdk/emulator/opengl/tests/translator_tests/GLES_V2/ |
D | triangleV2.cpp | 242 void Draw(EGLDisplay display,EGLSurface surface,int width,int height,GLuint program) in Draw() argument 269 eglSwapBuffers(display,surface); in Draw() 387 SDL_Surface *surface = SDL_SetVideoMode(WINDOW_WIDTH,WINDOW_HEIGHT, 32, SDL_HWSURFACE); in WinMain() local 388 if (surface == NULL) { in WinMain()
|
/sdk/emulator/opengl/tests/emulator_test_renderer/ |
D | main.cpp | 68 SDL_Surface *surface = SDL_SetVideoMode(winWidth, winHeight, 32, SDL_SWSURFACE); in WinMain() local 69 if (surface == NULL) { in WinMain()
|
/sdk/emulator/opengl/tests/translator_tests/GLES_CM/ |
D | triangleCM.cpp | 169 SDL_Surface *surface = SDL_SetVideoMode(WINDOW_WIDTH,WINDOW_HEIGHT, 32, SDL_HWSURFACE); in WinMain() local 170 if (surface == NULL) { in WinMain()
|
/sdk/emulator/opengl/ |
D | DESIGN | 537 the default module simply copies the pixel data from the surface to the 556 - Providing a virtual off-screen video surface where everything will get 561 - Provide a way to display the virtual video surface on a host application's 564 a rotation angle. This allows the surface to be scaled/rotated when it is 565 displayed, even if the dimensions of the video surface do not change.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
D | completionvalues1-expected-completion32.txt | 41 android:clipToPadding : Defines whether the ViewGroup will clip its drawing surface so as to exclu…
|
/sdk/files/typos/ |
D | typos-en.txt | 4082 surfce->surface
|