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

1 2 3 4 5 6 7

  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGLSurface.java 19 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/native/opengl/tools/glgen/specs/egl/
EGLExt.spec 1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
EGL14.spec 9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
12 EGLBoolean eglDestroySurface ( EGLDisplay dpy, EGLSurface surface )
13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value )
18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
19 EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value )
20 EGLBoolean eglBindTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer )
21 EGLBoolean eglReleaseTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer )
25 EGLBoolean eglMakeCurrent ( EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLSurface.java 21 * Wrapper class for native EGLSurface objects.
24 public class EGLSurface extends EGLObjectHandle {
25 private EGLSurface(int handle) {
34 EGLSurface that = (EGLSurface) o;
EGLExt.java 38 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
42 EGLSurface sur,
EGL14.java 36 public static EGLSurface EGL_NO_SURFACE = null;
220 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
222 private static native EGLSurface _eglCreateWindowSurface(
230 private static native EGLSurface _eglCreateWindowSurfaceTexture(
238 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy,
255 EGLSurface surface;
270 // C function EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
272 public static native EGLSurface eglCreatePbufferSurface(
279 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
281 public static native EGLSurface eglCreatePixmapSurface
    [all...]
  /frameworks/native/opengl/tools/glgen/static/egl/
EGLSurface.java 21 * Wrapper class for native EGLSurface objects.
24 public class EGLSurface extends EGLObjectHandle {
25 private EGLSurface(int handle) {
34 EGLSurface that = (EGLSurface) o;
  /frameworks/native/opengl/tests/angeles/include/GLES/
egltypes.h 8 typedef void *EGLSurface;
20 #define EGL_NO_SURFACE ((EGLSurface)0)
  /external/webkit/Source/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.h 53 EGLSurface createPbufferSurface(const IntSize&, const EGLConfig&, EGLint* errorCode = 0);
54 EGLSurface createPbufferFromClientBuffer(EGLClientBuffer, EGLenum bufferType, const EGLConfig&, EGLint* errorCode = 0);
56 EGLSurface surfaceForWindow(EGLNativeWindowType, const EGLConfig&);
58 bool surfacesCompatible(const EGLSurface&, const EGLSurface&);
63 void destroySurface(const EGLSurface&);
67 EGLContext contextForSurface(const EGLSurface&);
81 HashMap<EGLSurface, SurfaceOpenVG*> m_platformSurfaces;
82 HashMap<EGLNativeWindowType, EGLSurface> m_windowSurfaces;
83 HashMap<EGLSurface, EGLint> m_surfaceConfigIds
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
egl_proc.h 31 typedef EGLSurface (* eglCreateWindowSurface_t) (EGLDisplay, EGLConfig, EGLNativeWindowType, const EGLint*);
32 typedef EGLSurface (* eglCreatePbufferSurface_t) (EGLDisplay, EGLConfig, const EGLint*);
33 typedef EGLSurface (* eglCreatePixmapSurface_t) (EGLDisplay, EGLConfig, EGLNativePixmapType, const EGLint*);
34 typedef EGLBoolean (* eglDestroySurface_t) (EGLDisplay, EGLSurface);
35 typedef EGLBoolean (* eglQuerySurface_t) (EGLDisplay, EGLSurface, EGLint, EGLint*);
40 typedef EGLSurface (* eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*);
41 typedef EGLBoolean (* eglSurfaceAttrib_t) (EGLDisplay, EGLSurface, EGLint, EGLint);
42 typedef EGLBoolean (* eglBindTexImage_t) (EGLDisplay, EGLSurface, EGLint);
43 typedef EGLBoolean (* eglReleaseTexImage_t) (EGLDisplay, EGLSurface, EGLint);
47 typedef EGLBoolean (* eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext)
    [all...]
  /sdk/emulator/opengl/tests/EGL_host_wrapper/
egl_proc.h 31 typedef EGLSurface (* eglCreateWindowSurface_t) (EGLDisplay, EGLConfig, EGLNativeWindowType, const EGLint*);
32 typedef EGLSurface (* eglCreatePbufferSurface_t) (EGLDisplay, EGLConfig, const EGLint*);
33 typedef EGLSurface (* eglCreatePixmapSurface_t) (EGLDisplay, EGLConfig, EGLNativePixmapType, const EGLint*);
34 typedef EGLBoolean (* eglDestroySurface_t) (EGLDisplay, EGLSurface);
35 typedef EGLBoolean (* eglQuerySurface_t) (EGLDisplay, EGLSurface, EGLint, EGLint*);
40 typedef EGLSurface (* eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*);
41 typedef EGLBoolean (* eglSurfaceAttrib_t) (EGLDisplay, EGLSurface, EGLint, EGLint);
42 typedef EGLBoolean (* eglBindTexImage_t) (EGLDisplay, EGLSurface, EGLint);
43 typedef EGLBoolean (* eglReleaseTexImage_t) (EGLDisplay, EGLSurface, EGLint);
47 typedef EGLBoolean (* eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext)
    [all...]
egl.cpp 104 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
109 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
114 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
119 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
124 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value)
149 EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list)
154 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value)
159 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
164 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer)
184 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
main.h 22 EGLSurface drawSurface;
23 EGLSurface readSurface;
35 void setCurrentDrawSurface(EGLSurface surface);
36 EGLSurface getCurrentDrawSurface();
38 void setCurrentReadSurface(EGLSurface surface);
39 EGLSurface getCurrentReadSurface();
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglValidate.h 26 static bool releaseContext(EGLContext ctx,EGLSurface s1,EGLSurface s2);
27 static bool badContextMatch(EGLContext ctx,EGLSurface s1,EGLSurface s2);
EglValidate.cpp 66 bool EglValidate::releaseContext(EGLContext ctx,EGLSurface s1,EGLSurface s2) {
72 bool EglValidate::badContextMatch(EGLContext ctx,EGLSurface s1,EGLSurface s2) {
  /frameworks/native/cmds/flatland/
GLHelper.h 52 bool makeCurrent(EGLSurface surface);
55 sp<GLConsumer>* surfaceTexture, EGLSurface* surface,
59 sp<SurfaceControl>* surfaceControl, EGLSurface* surface);
61 void destroySurface(EGLSurface* surface);
63 bool swapBuffers(EGLSurface surface);
72 sp<GLConsumer>* surfaceTexture, EGLSurface* surface);
82 EGLSurface mDummySurface;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
egl_proc.h 31 typedef EGLSurface (EGLAPIENTRY *eglCreateWindowSurface_t) (EGLDisplay, EGLConfig, EGLNativeWindowType, const EGLint*);
32 typedef EGLSurface (EGLAPIENTRY *eglCreatePbufferSurface_t) (EGLDisplay, EGLConfig, const EGLint*);
33 typedef EGLSurface (EGLAPIENTRY *eglCreatePixmapSurface_t) (EGLDisplay, EGLConfig, EGLNativePixmapType, const EGLint*);
34 typedef EGLBoolean (EGLAPIENTRY *eglDestroySurface_t) (EGLDisplay, EGLSurface);
35 typedef EGLBoolean (EGLAPIENTRY *eglQuerySurface_t) (EGLDisplay, EGLSurface, EGLint, EGLint*);
40 typedef EGLSurface (EGLAPIENTRY *eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*);
41 typedef EGLBoolean (EGLAPIENTRY *eglSurfaceAttrib_t) (EGLDisplay, EGLSurface, EGLint, EGLint);
42 typedef EGLBoolean (EGLAPIENTRY *eglBindTexImage_t) (EGLDisplay, EGLSurface, EGLint);
43 typedef EGLBoolean (EGLAPIENTRY *eglReleaseTexImage_t) (EGLDisplay, EGLSurface, EGLint);
47 typedef EGLBoolean (EGLAPIENTRY *eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext)
    [all...]
WindowSurface.h 38 EGLSurface getEGLSurface() const { return m_eglSurface; }
54 EGLSurface m_eglSurface;
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
3 private static native EGLSurface _eglCreateWindowSurface(
11 private static native EGLSurface _eglCreateWindowSurfaceTexture(
19 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy,
36 EGLSurface surface;
  /external/skia/include/gpu/gl/
SkANGLEGLContext.h 34 EGLSurface fOldSurface;
44 EGLSurface fSurface;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 30 EGLSurface eglSurface() { return m_eglSurface; }
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
50 EGLSurface m_eglSurface;
  /device/generic/goldfish/opengl/system/egl/
eglContext.h 34 EGLSurface read;
35 EGLSurface draw;
  /frameworks/native/opengl/libs/EGL/
egl_object.h 130 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref;
133 EGLNativeWindowType win, EGLSurface surface,
136 EGLSurface surface;
152 void onMakeCurrent(EGLSurface draw, EGLSurface read);
157 EGLSurface read;
158 EGLSurface draw;
177 egl_surface_t* get_surface(EGLSurface surface) {
  /development/ndk/platforms/android-9/include/EGL/
egl.h 49 typedef void *EGLSurface;
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 surface, EGLint buffer)
    [all...]

Completed in 529 milliseconds

1 2 3 4 5 6 7