Home
last modified time | relevance | path

Searched refs:surface (Results 1 – 21 of 21) sorted by relevance

/sdk/emulator/opengl/tests/EGL_host_wrapper/
Degl.cpp119 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/
Degl.h273 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,
Deglext.h71 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/
DEglContext.cpp25 bool EglContext::usingSurface(SurfacePtr surface) { in usingSurface() argument
26 return surface.Ptr() == m_read.Ptr() || surface.Ptr() == m_draw.Ptr(); in usingSurface()
DEglImp.cpp573 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 …]
DEglContext.h42 bool usingSurface(SurfacePtr surface);
DEglDisplay.h50 SurfacePtr getSurface(EGLSurface surface);
DEglDisplay.cpp142 SurfacePtr EglDisplay::getSurface(EGLSurface surface) { in getSurface() argument
145 unsigned int hndl = ToTargetCompatibleHandle((uintptr_t)surface); in getSurface()
/sdk/emulator/opengl/tests/ut_renderer/
DRenderer.cpp66 … 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()
DRendererSurface.h40 …RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config)… in RendererSurface() argument
44 m_eglSurface(surface) in RendererSurface()
DRenderer.h48 int swapBuffers(RenderingThread *thread, const ClientHandle & surface);
DRenderingThread.h74 static void s_swapBuffers(uint32_t pid, uint32_t surface);
DRenderingThread.cpp252 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/
DFrameBuffer.cpp33 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/
Dut_rendercontrol.in4 GL_ENTRY(void, swapBuffers, uint32_t pid, uint32_t surface)
/sdk/emulator/opengl/tests/translator_tests/GLES_V2/
DtriangleV2.cpp242 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/
Dmain.cpp68 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/
DtriangleCM.cpp169 SDL_Surface *surface = SDL_SetVideoMode(WINDOW_WIDTH,WINDOW_HEIGHT, 32, SDL_HWSURFACE); in WinMain() local
170 if (surface == NULL) { in WinMain()
/sdk/emulator/opengl/
DDESIGN537 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/
Dcompletionvalues1-expected-completion32.txt41 android:clipToPadding : Defines whether the ViewGroup will clip its drawing surface so as to exclu…
/sdk/files/typos/
Dtypos-en.txt4082 surfce->surface