OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:eglSurface
(Results
1 - 7
of
7
) sorted by null
/development/tools/emulator/opengl/tests/ut_renderer/
RendererSurface.cpp
91
EGLSurface
eglSurface
= eglCreateWindowSurface(eglDisplay,
99
return new RendererSurface(eglDisplay, window,
eglSurface
, eglConfig);
RendererSurface.h
30
EGLSurface
eglSurface
() { return m_eglSurface; }
40
RendererSurface(EGLDisplay display, NativeWindowType window,
EGLSurface
surface, EGLConfig config) :
50
EGLSurface
m_eglSurface;
/external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.h
99
EGLSurface
eglSurface
() const { return m_eglSurface; }
151
EGLSurface
m_eglSurface;
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
libEGL.cpp
318
EGLSurface
__stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
373
EGLSurface
surface = (
EGLSurface
)display->createWindowSurface(window, config);
385
EGLSurface
__stdcall eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
411
EGLSurface
__stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
437
EGLBoolean __stdcall eglDestroySurface(EGLDisplay dpy,
EGLSurface
surface)
439
TRACE("(EGLDisplay dpy = 0x%0.8p,
EGLSurface
surface = 0x%0.8p)", dpy, surface);
467
EGLBoolean __stdcall eglQuerySurface(EGLDisplay dpy,
EGLSurface
surface, EGLint attribute, EGLint *value)
469
TRACE("(EGLDisplay dpy = 0x%0.8p,
EGLSurface
surface = 0x%0.8p, EGLint attribute = %d, EGLint *value = 0x%0.8p)",
486
egl::Surface *
eglSurface
= (egl::Surface*)surface
[
all
...]
/frameworks/base/libs/gui/tests/
SurfaceTextureClient_test.cpp
95
EGLSurface
mEglSurface;
145
EGLSurface
eglSurface
= eglCreateWindowSurface(dpy, myConfig, mANW.get(),
147
EXPECT_NE(EGL_NO_SURFACE,
eglSurface
);
432
EGLSurface
sur;
680
EGLSurface
mEglSurfaces[NUM_SURFACE_TEXTURES];
/frameworks/base/opengl/tests/gl_basic/
gl_basic.cpp
19
EGLSurface
eglSurface
;
242
if ( (
eglSurface
= eglCreateWindowSurface(eglDisplay, myConfig,
255
if ( eglMakeCurrent(eglDisplay,
eglSurface
,
eglSurface
, eglContext) != EGL_TRUE )
263
eglQuerySurface(eglDisplay,
eglSurface
, EGL_WIDTH, &w);
265
eglQuerySurface(eglDisplay,
eglSurface
, EGL_HEIGHT, &h);
286
eglDestroySurface( eglDisplay,
eglSurface
);
363
eglSwapBuffers(eglDisplay,
eglSurface
);
/frameworks/base/opengl/tests/tritex/
tritex.cpp
21
EGLSurface
eglSurface
;
146
if ( (
eglSurface
= eglCreateWindowSurface(eglDisplay, myConfig,
159
if ( eglMakeCurrent(eglDisplay,
eglSurface
,
eglSurface
, eglContext) != EGL_TRUE )
175
eglDestroySurface( eglDisplay,
eglSurface
);
260
eglSwapBuffers(eglDisplay,
eglSurface
);
263
eglSwapBuffers(eglDisplay,
eglSurface
);
272
eglSwapBuffers(eglDisplay,
eglSurface
);
Completed in 261 milliseconds