Searched refs:EGLSurface (Results 1 - 25 of 50) sorted by relevance

12

/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGLSurface.java19 public abstract class EGLSurface class
H A DEGL10.java95 EGLSurface EGL_NO_SURFACE = new com.google.android.gles_jni.EGLSurfaceImpl(0);
98 boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
100 EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list);
101 EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list);
102 EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list);
104 boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
109 EGLSurface eglGetCurrentSurface(int readdraw);
113 boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
116 boolean eglQuerySurface(EGLDisplay display, EGLSurface surfac
[all...]
/frameworks/base/opengl/tests/angeles/include/GLES/
H A Degltypes.h8 typedef void *EGLSurface; typedef
20 #define EGL_NO_SURFACE ((EGLSurface)0)
H A Degl.h72 typedef void *EGLSurface;
81 #define EGL_NO_SURFACE ((EGLSurface)0)
206 GLAPI EGLSurface APIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list);
207 GLAPI EGLSurface APIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list);
208 GLAPI EGLSurface APIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list);
209 GLAPI EGLBoolean APIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface);
210 GLAPI EGLBoolean APIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value);
214 GLAPI EGLBoolean APIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
216 GLAPI EGLSurface APIENTR
[all...]
/frameworks/base/opengl/include/EGL/
H A Degl.h49 typedef void *EGLSurface; typedef
71 #define EGL_NO_SURFACE ((EGLSurface)0)
265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
268 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config,
270 EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config,
273 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface);
274 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface,
284 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer(
288 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface,
290 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surfac
[all...]
H A Deglext.h71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface);
74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
75 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLSurfaceImpl.java21 public class EGLSurfaceImpl extends EGLSurface {
H A DEGLImpl.java33 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value);
41 public native boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
42 public native boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
44 public native boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface);
46 public native boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
61 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) {
69 public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) {
78 public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) {
137 public synchronized EGLSurface eglGetCurrentSurfac
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java28 import javax.microedition.khronos.egl.EGLSurface;
64 public boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface,
94 public EGLSurface eglCreatePbufferSurface(EGLDisplay display,
102 EGLSurface result = mEgl10.eglCreatePbufferSurface(display, config,
109 public EGLSurface eglCreatePixmapSurface(EGLDisplay display,
118 EGLSurface result = mEgl10.eglCreatePixmapSurface(display, config,
125 public EGLSurface eglCreateWindowSurface(EGLDisplay display,
134 EGLSurface result = mEgl10.eglCreateWindowSurface(display, config,
153 public boolean eglDestroySurface(EGLDisplay display, EGLSurface surface) {
218 public EGLSurface eglGetCurrentSurfac
[all...]
H A DGLSurfaceView.java27 import javax.microedition.khronos.egl.EGLSurface;
787 EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config,
789 void destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface);
794 public EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display,
796 EGLSurface result = null;
812 EGLSurface surface) {
1183 EGLSurface mEglSurface;
/frameworks/base/libs/rs/driver/
H A DrsdGL.h39 EGLSurface surface;
40 EGLSurface surfaceDefault;
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Degl.cpp19 EGLBoolean Debug_eglSwapBuffers(EGLDisplay dpy, EGLSurface draw)
25 EGLSurface draw;
/frameworks/base/opengl/libs/EGL/
H A Degl_object.h139 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref;
142 EGLSurface surface, int impl, egl_connection_t const* cnx) :
147 EGLSurface surface;
169 EGLSurface read;
170 EGLSurface draw;
220 egl_surface_t* get_surface(EGLSurface surface) {
H A DeglApi.cpp342 EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
375 // the EGL spec requires that a new EGLSurface default to swap interval
380 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
388 // EGLSurface creation failed
395 EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
404 EGLSurface surface = cnx->egl.eglCreatePixmapSurface(
416 EGLSurface eglCreatePbufferSurface( EGLDisplay dpy, EGLConfig config,
424 EGLSurface surface = cnx->egl.eglCreatePbufferSurface(
436 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
456 EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surfac
[all...]
H A Degl_display.h149 EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
/frameworks/base/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h47 void setFrameBuffer(EGLDisplay dpy, EGLSurface sur);
H A DDisplayHardware.h101 EGLSurface mSurface;
/frameworks/base/opengl/libagl/
H A Degl.cpp53 EGLBoolean EGLAPI eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw,
127 EGLSurface read;
128 EGLSurface draw;
187 LOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
1210 static EGLSurface createWindowSurface(EGLDisplay dpy, EGLConfig config,
1259 static EGLSurface createPixmapSurface(EGLDisplay dpy, EGLConfig config,
1305 static EGLSurface createPbufferSurface(EGLDisplay dpy, EGLConfig config,
1533 EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
1540 EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config,
1547 EGLSurface eglCreatePbufferSurfac
[all...]
/frameworks/base/opengl/tests/angeles/
H A Dapp-linux.cpp72 static EGLSurface sEglSurface = EGL_NO_SURFACE;
134 EGLSurface surface;
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp54 static inline EGLSurface getSurface(JNIEnv* env, jobject o) {
56 return (EGLSurface)env->GetIntField(o, gSurface_EGLSurfaceFieldID);
249 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
299 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
333 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
362 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window.get(), base);
449 EGLSurface sur = getSurface(_env, surface);
472 EGLSurface sdr = getSurface(_env, draw);
473 EGLSurface srd = getSurface(_env, read);
494 EGLSurface su
[all...]
/frameworks/base/opengl/tests/gl_perf/
H A Dgl2_perf.cpp57 static EGLSurface surface;
/frameworks/base/opengl/tests/linetex/
H A Dlinetex.cpp45 EGLSurface surface;
/frameworks/base/opengl/tests/swapinterval/
H A Dswapinterval.cpp43 EGLSurface surface;
/frameworks/media/libvideoeditor/lvpp/
H A DNativeWindowRenderer.h89 EGLSurface mEglSurface;
/frameworks/base/opengl/tests/fillrate/
H A Dfillrate.cpp44 EGLSurface surface;

Completed in 337 milliseconds

12