Home
last modified time | relevance | path

Searched refs:readdraw (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/opengl/java/com/google/android/gles_jni/
DEGLImpl.java138 public synchronized EGLSurface eglGetCurrentSurface(int readdraw) { in eglGetCurrentSurface() argument
139 long value = _eglGetCurrentSurface(readdraw); in eglGetCurrentSurface()
156 private native long _eglGetCurrentSurface(int readdraw); in _eglGetCurrentSurface() argument
/frameworks/base/opengl/java/android/opengl/
DEGLLogWrapper.java218 public EGLSurface eglGetCurrentSurface(int readdraw) { in eglGetCurrentSurface() argument
220 arg("readdraw", readdraw); in eglGetCurrentSurface()
223 EGLSurface result = mEgl10.eglGetCurrentSurface(readdraw); in eglGetCurrentSurface()
DEGL14.java422 int readdraw in eglGetCurrentSurface() argument
/frameworks/base/core/jni/
Dcom_google_android_gles_jni_EGLImpl.cpp425 static jlong jni_eglGetCurrentSurface(JNIEnv *_env, jobject _this, jint readdraw) { in jni_eglGetCurrentSurface() argument
426 if ((readdraw != EGL_READ) && (readdraw != EGL_DRAW)) { in jni_eglGetCurrentSurface()
430 return reinterpret_cast<jlong>(eglGetCurrentSurface(readdraw)); in jni_eglGetCurrentSurface()
Dandroid_opengl_EGL14.cpp1088 (JNIEnv *_env, jobject _this, jint readdraw) { in android_eglGetCurrentSurface() argument
1091 (EGLint)readdraw in android_eglGetCurrentSurface()
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
DEGL10.java109 EGLSurface eglGetCurrentSurface(int readdraw); in eglGetCurrentSurface() argument
/frameworks/native/opengl/tools/glgen/specs/egl/
DEGL14.spec27 EGLSurface eglGetCurrentSurface ( EGLint readdraw )
/frameworks/base/libs/hwui/debug/
Dnullegl.cpp139 EGLSurface eglGetCurrentSurface(EGLint readdraw) { in eglGetCurrentSurface() argument
/frameworks/native/opengl/tests/angeles/include/GLES/
Degl.h216 GLAPI EGLSurface APIENTRY eglGetCurrentSurface (EGLint readdraw);
/frameworks/native/opengl/include/EGL/
Degl.h305 EGLAPI EGLSurface EGLAPIENTRY eglGetCurrentSurface(EGLint readdraw);
/frameworks/native/opengl/libagl/
Degl.cpp1827 EGLSurface eglGetCurrentSurface(EGLint readdraw) in eglGetCurrentSurface() argument
1835 if (readdraw == EGL_READ) { in eglGetCurrentSurface()
1837 } else if (readdraw == EGL_DRAW) { in eglGetCurrentSurface()
/frameworks/native/opengl/libs/EGL/
DeglApi.cpp845 EGLSurface eglGetCurrentSurface(EGLint readdraw) in eglGetCurrentSurface() argument
856 switch (readdraw) { in eglGetCurrentSurface()