HomeSort by relevance Sort by last modified time
    Searched refs:EGLSurface (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLSurface.java 20 public abstract class EGLSurface
EGL10.java 95 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 surface, int attribute, int[] value)
    [all...]
  /frameworks/base/opengl/tests/angeles/include/GLES/
egltypes.h 8 typedef void *EGLSurface;
20 #define EGL_NO_SURFACE ((EGLSurface)0)
egl.h 72 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 APIENTRY eglGetCurrentSurface (EGLint readdraw)
    [all...]
  /external/webkit/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.h 53 EGLSurface createPbufferSurface(const IntSize&, const EGLConfig&, EGLint* errorCode = 0);
55 EGLSurface surfaceForWindow(EGLNativeWindowType, const EGLConfig&);
57 bool surfacesCompatible(const EGLSurface&, const EGLSurface&);
62 void destroySurface(const EGLSurface&);
66 EGLContext contextForSurface(const EGLSurface&);
80 HashMap<EGLSurface, SurfaceOpenVG*> m_platformSurfaces;
81 HashMap<EGLNativeWindowType, EGLSurface> m_windowSurfaces;
82 HashMap<EGLSurface, EGLint> m_surfaceConfigIds;
EGLDisplayOpenVG.cpp 55 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
66 displayManager->m_platformSurfaces.set(platformSurface->eglSurface(), platformSurface);
72 displayManager->m_platformSurfaces.remove(platformSurface->eglSurface());
122 HashMap<EGLSurface, EGLint>::const_iterator end = m_surfaceConfigIds.end();
123 for (HashMap<EGLSurface, EGLint>::const_iterator it = m_surfaceConfigIds.begin(); it != end; ++it)
224 EGLSurface surface = createPbufferSurface(IntSize(1, 1), config);
239 EGLSurface EGLDisplayOpenVG::createPbufferSurface(const IntSize& size, const EGLConfig& config, EGLint* errorCode)
246 EGLSurface surface = eglCreatePbufferSurface(m_display, config, attribList);
266 EGLSurface EGLDisplayOpenVG::surfaceForWindow(EGLNativeWindowType wId, const EGLConfig& config)
271 EGLSurface surface = eglCreateWindowSurface(m_display, config, wId, 0)
    [all...]
SurfaceOpenVG.h 78 EGLSurface eglSurface() const { return m_eglSurface; }
130 EGLSurface m_eglSurface;
SurfaceOpenVG.cpp 172 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
196 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLSurfaceImpl.java 22 public class EGLSurfaceImpl extends EGLSurface {
EGLImpl.java 34 public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value);
40 public native boolean eglDestroySurface(EGLDisplay display, EGLSurface surface);
41 public native boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext context);
43 public native boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface);
45 public native boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap);
57 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) {
65 public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) {
74 public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) {
124 public synchronized EGLSurface eglGetCurrentSurface(int readdraw)
    [all...]
  /frameworks/base/opengl/include/EGL/
eglext.h 71 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);
144 EGLAPI EGLClientBuffer EGLAPIENTRY eglGetRenderBufferANDROID(EGLDisplay dpy, EGLSurface draw);
146 typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETRENDERBUFFERANDROIDPROC) (EGLDisplay dpy, EGLSurface draw);
152 EGLAPI EGLBoolean EGLAPIENTRY eglSetSwapRectangleANDROID (EGLDisplay dpy, EGLSurface draw, EGLint left, EGLint top, EGLint width, EGLint height);
154 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSETSWAPRECTANGLEANDROIDPROC) (EGLDisplay dpy, EGLSurface draw, EGLint left, EGLint top, EGLint width, EGLint height);
egl.h 49 typedef void *EGLSurface;
71 #define EGL_NO_SURFACE ((EGLSurface)0)
266 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
269 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config,
271 EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config,
274 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface);
275 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface,
285 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer(
289 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface,
291 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 28 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 eglGetCurrentSurface(int readdraw)
    [all...]
  /ndk/samples/san-angeles/jni/
importgl.h 68 FNDEF(EGLSurface, eglCreateWindowSurface, (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list));
70 FNDEF(EGLBoolean, eglDestroySurface, (EGLDisplay dpy, EGLSurface surface));
76 FNDEF(EGLBoolean, eglMakeCurrent, (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx));
77 FNDEF(EGLBoolean, eglSwapBuffers, (EGLDisplay dpy, EGLSurface draw));
app-linux.c 71 static EGLSurface sEglSurface = EGL_NO_SURFACE;
  /frameworks/base/opengl/tests/angeles/
app-linux.cpp 72 static EGLSurface sEglSurface = EGL_NO_SURFACE;
132 EGLSurface surface;
  /frameworks/base/opengl/libs/EGL/
egl.cpp 180 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref;
182 egl_surface_t(EGLDisplay dpy, EGLSurface surface,
189 EGLSurface surface;
206 EGLSurface read;
207 EGLSurface draw;
464 egl_surface_t* get_surface(EGLSurface surface) {
511 static EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface)
949 EGLSurface eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config,
957 EGLSurface surface = cnx->egl.eglCreateWindowSurface(
967 EGLSurface eglCreatePixmapSurface( EGLDisplay dpy, EGLConfig config
    [all...]
  /frameworks/base/libs/surfaceflinger/DisplayHardware/
DisplayHardware.h 97 EGLSurface mSurface;
DisplayHardware.cpp 126 EGLSurface surface;
161 LOGI("EGLSurface: %d-%d-%d-%d, config=%p", r, g, b, a, config);
332 EGLSurface surface = mSurface;
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 71 static inline EGLSurface getSurface(JNIEnv* env, jobject o) {
73 return (EGLSurface)env->GetIntField(o, gSurface_EGLSurfaceFieldID);
257 EGLSurface sur = eglCreatePbufferSurface(dpy, cnf, base);
307 EGLSurface sur = eglCreatePixmapSurface(dpy, cnf, &pixmap, base);
340 EGLSurface sur = eglCreateWindowSurface(dpy, cnf, window, base);
427 EGLSurface sur = getSurface(_env, surface);
450 EGLSurface sdr = getSurface(_env, draw);
451 EGLSurface srd = getSurface(_env, read);
472 EGLSurface sur = getSurface(_env, surface);
509 #define SURFACE "Ljavax/microedition/khronos/egl/EGLSurface;"
    [all...]
  /frameworks/base/opengl/tests/linetex/
linetex.cpp 45 EGLSurface surface;
  /frameworks/base/opengl/tests/swapinterval/
swapinterval.cpp 43 EGLSurface surface;
  /frameworks/base/opengl/libagl/
egl.cpp 120 EGLSurface read;
121 EGLSurface draw;
181 LOGE_IF(magic != MAGIC, "invalid EGLSurface (%p)", this);
    [all...]
  /frameworks/base/opengl/tests/fillrate/
fillrate.cpp 44 EGLSurface surface;
  /frameworks/base/opengl/tests/textures/
textures.cpp 41 EGLSurface surface;

Completed in 1414 milliseconds

1 2