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

1 2 3 4 5 6 7 8 910

  /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/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) {
32 if (!(o instanceof EGLSurface)) return false;
34 EGLSurface that = (EGLSurface) o;
EGLExt.java 37 // C function EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
41 EGLSurface sur,
EGL14.java 35 public static EGLSurface EGL_NO_SURFACE = null;
219 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
221 private static native EGLSurface _eglCreateWindowSurface(
229 private static native EGLSurface _eglCreateWindowSurfaceTexture(
237 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy,
254 EGLSurface surface;
269 // C function EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
271 public static native EGLSurface eglCreatePbufferSurface(
278 // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
280 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) {
32 if (!(o instanceof EGLSurface)) return false;
34 EGLSurface that = (EGLSurface) o;
  /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/native/opengl/tests/angeles/include/GLES/
egltypes.h 8 typedef void *EGLSurface;
20 #define EGL_NO_SURFACE ((EGLSurface)0)
  /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...]
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
main.h 23 EGLSurface drawSurface;
24 EGLSurface readSurface;
36 void setCurrentDrawSurface(EGLSurface surface);
37 EGLSurface getCurrentDrawSurface();
39 void setCurrentReadSurface(EGLSurface surface);
40 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...]
  /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/chromium_org/third_party/skia/include/gpu/gl/
SkANGLEGLContext.h 34 EGLSurface fOldSurface;
44 EGLSurface fSurface;
  /external/chromium_org/ui/gl/EGL/
eglextchromium.h 23 EGLDisplay dpy, EGLSurface surface, EGLuint64CHROMIUM *ust,
27 (EGLDisplay dpy, EGLSurface surface, EGLuint64CHROMIUM *ust,
  /external/skia/include/gpu/gl/
SkANGLEGLContext.h 34 EGLSurface fOldSurface;
44 EGLSurface fSurface;
  /hardware/libhardware/tests/hwc/
util.h 27 int egl_create(EGLDisplay *_display, EGLSurface *_surface, int *_w, int *_h);
28 void egl_destroy(EGLDisplay display, EGLSurface surface);
  /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;
  /external/chromium_org/gpu/gles2_conform_support/egl/
display.h 59 bool IsValidSurface(EGLSurface surface);
60 EGLSurface CreateWindowSurface(EGLConfig config,
63 void DestroySurface(EGLSurface surface);
64 void SwapBuffers(EGLSurface surface);
72 bool MakeCurrent(EGLSurface draw, EGLSurface read, EGLContext ctx);
  /device/generic/goldfish/opengl/system/egl/
eglContext.h 34 EGLSurface read;
35 EGLSurface draw;
  /external/chromium_org/ui/gl/
gl_surface_egl.h 64 virtual EGLSurface GetHandle() OVERRIDE;
74 void SetHandle(EGLSurface surface);
78 EGLSurface surface_;
100 virtual EGLSurface GetHandle() OVERRIDE;
108 EGLSurface surface_;

Completed in 618 milliseconds

1 2 3 4 5 6 7 8 910