Searched defs:mEglSurface (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/libs/hwui/pipeline/skia/
H A DSkiaOpenGLPipeline.h57 EGLSurface mEglSurface = EGL_NO_SURFACE; member in class:android::uirenderer::skiapipeline::SkiaOpenGLPipeline
/frameworks/native/libs/gui/tests/
H A DGLTest.h40 mEglSurface(EGL_NO_SURFACE),
65 EGLSurface mEglSurface; member in class:android::GLTest
H A DSurfaceTextureClient_test.cpp40 mEglSurface(EGL_NO_SURFACE),
81 mEglSurface = eglCreatePbufferSurface(mEglDisplay, myConfig, pbufferAttribs);
83 ASSERT_NE(EGL_NO_SURFACE, mEglSurface);
89 EXPECT_TRUE(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext));
100 eglDestroySurface(mEglDisplay, mEglSurface);
123 EGLSurface mEglSurface; member in class:android::SurfaceTextureClientTest
206 success = eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
/frameworks/av/cmds/screenrecord/
H A DEglWindow.h37 mEglSurface(EGL_NO_SURFACE),
77 EGLSurface mEglSurface; member in class:android::EglWindow
/frameworks/base/libs/hwui/renderthread/
H A DOpenGLPipeline.h68 EGLSurface mEglSurface = EGL_NO_SURFACE; member in class:android::uirenderer::renderthread::OpenGLPipeline
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java144 private EGLSurface mEglSurface; field in class:GLTextureViewActivity.RenderThread
238 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
348 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
353 !mEglSurface.equals(mEgl.eglGetCurrentSurface(EGL10.EGL_DRAW))) {
354 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
383 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
385 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) {
395 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurfac
[all...]
/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/
H A DImageFlipRenderThread.java98 private EGLSurface mEglSurface; field in class:ImageFlipRenderThread
191 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
301 mEgl.eglDestroySurface(mEglDisplay, mEglSurface);
306 !mEglSurface.equals(mEgl.eglGetCurrentSurface(EGL10.EGL_DRAW))) {
307 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
336 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
338 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) {
348 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurfac
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java110 EGLSurface mEglSurface; field in class:BlockingGLTextureView.EglHelper
183 mEglSurface = null;
216 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surface, null);
218 mEglSurface = null;
221 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) {
233 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
257 if (!mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
268 if (mEglSurface !
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DColorFade.java91 private EGLSurface mEglSurface; field in class:ColorFade
401 EGL14.eglSwapBuffers(mEglDisplay, mEglSurface);
607 if (mEglSurface == null) {
612 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
614 if (mEglSurface == null) {
623 if (mEglSurface != null) {
624 if (!EGL14.eglDestroySurface(mEglDisplay, mEglSurface)) {
627 mEglSurface = null;
665 if (mEglSurface == null) {
668 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurfac
[all...]
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestBuffer.cpp120 mEglSurface(EGL_NO_SURFACE),
185 mEglSurface = eglCreateWindowSurface(mEglDisplay, configs[0],
187 if (mEglSurface == EGL_NO_SURFACE) {
193 if (!eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
204 eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext);
209 eglSwapBuffers(mEglDisplay, mEglSurface);
217 if (mEglSurface != EGL_NO_SURFACE)
218 eglDestroySurface(mEglDisplay, mEglSurface);
230 EGLSurface mEglSurface; member in class:Hwc2TestEglManager
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1069 mEglSurface = null;
1106 mEglSurface = view.mEGLWindowSurfaceFactory.createWindowSurface(mEgl,
1109 mEglSurface = null;
1112 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) {
1124 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
1169 if (! mEgl.eglSwapBuffers(mEglDisplay, mEglSurface)) {
1183 if (mEglSurface != null && mEglSurface !
1236 EGLSurface mEglSurface; field in class:GLSurfaceView.EglHelper
[all...]

Completed in 331 milliseconds