/frameworks/base/opengl/include/EGL/ |
egl.h | 3 /* Reference version of egl.h for EGL 1.4. 36 #include <EGL/eglplatform.h> 42 /* EGL Types */ 52 /* EGL Versioning */ 59 /* EGL Enumerants. Bitmasks and other exceptional cases aside, most 63 /* EGL aliases */ 91 #define EGL_CONTEXT_LOST 0x300E /* EGL 1.1 - IMG_power_management */ 233 /* EGL 1.2 tokens renamed for consistency in EGL 1.3 * [all...] |
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
EGLConfigImpl.java | 20 import javax.microedition.khronos.egl.*;
|
EGLContextImpl.java | 20 import javax.microedition.khronos.egl.*;
|
EGLDisplayImpl.java | 20 import javax.microedition.khronos.egl.*;
|
EGLSurfaceImpl.java | 20 import javax.microedition.khronos.egl.*;
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
EGL11.java | 17 package javax.microedition.khronos.egl;
|
/frameworks/base/opengl/tests/testPauseResume/res/values/ |
strings.xml | 26 <string name="test_activity">Test Egl</string>
|
/frameworks/base/opengl/java/android/opengl/ |
EGLLogWrapper.java | 22 import javax.microedition.khronos.egl.EGL; 23 import javax.microedition.khronos.egl.EGL10; 24 import javax.microedition.khronos.egl.EGL11; 25 import javax.microedition.khronos.egl.EGLConfig; 26 import javax.microedition.khronos.egl.EGLContext; 27 import javax.microedition.khronos.egl.EGLDisplay; 28 import javax.microedition.khronos.egl.EGLSurface; 38 public EGLLogWrapper(EGL egl, int configFlags, Writer log) [all...] |
/frameworks/base/include/ui/egl/ |
android_natives.h | 48 /* a magic value defined by the actual EGL native type */ 51 /* the sizeof() of the actual EGL native type */ 122 * hook called by EGL to acquire a buffer. After this call, the buffer 132 * hook called by EGL to lock a buffer. This MUST be called before modifying 141 * hook called by EGL when modifications to the render buffer are done. 202 * by EGL when the window is made current. 214 * by EGL when the window is made not current. 260 * This helper class turns an EGL android_native_xxx type into a C++
|
/frameworks/base/opengl/tests/angeles/include/GLES/ |
egl.h | 44 ** - EGL types and resources 46 ** - EGL and native handle values 48 ** EGL types and resources are to be typedef'ed with appropriate platform 53 ** replaced with corresponding types of the native window system in egl.h. 55 ** EGL and native handle values must match their types. 76 ** EGL and native handle values
|
/frameworks/base/libs/surfaceflinger/DisplayHardware/ |
DisplayHardware.cpp | 32 #include <EGL/egl.h> 33 #include <EGL/eglext.h> 63 LOGE("%s: EGL error 0x%04x (%s)", 107 // initialize EGL 149 * Gather EGL extensions 155 LOGI("EGL informations:");
|
/frameworks/base/opengl/libs/ |
hooks.h | 26 #include <EGL/egl.h> 27 #include <EGL/eglext.h> 73 // GL / EGL hooks 81 #include "EGL/egl_entries.in"
|
/frameworks/base/include/ui/ |
FramebufferNativeWindow.h | 23 #include <EGL/egl.h> 30 #include <ui/egl/android_natives.h>
|
android_native_buffer.h | 20 #include <ui/egl/android_natives.h>
|
/frameworks/base/opengl/libagl/ |
TextureObjectManager.h | 33 #include <EGL/egl.h> 34 #include <EGL/eglext.h>
|
/frameworks/base/opengl/libs/EGL/ |
Loader.h | 29 #include <EGL/egl.h> 45 EGL = 0x01,
|
/device/htc/passion/ |
extract-files.sh | 38 adb pull /system/lib/egl/libEGL_adreno200.so ../../../vendor/htc/$DEVICE/proprietary/libEGL_adreno200.so 39 adb pull /system/lib/egl/libGLESv1_CM_adreno200.so ../../../vendor/htc/$DEVICE/proprietary/libGLESv1_CM_adreno200.so 40 adb pull /system/lib/egl/libGLESv2_adreno200.so ../../../vendor/htc/$DEVICE/proprietary/libGLESv2_adreno200.so 41 adb pull /system/lib/egl/libq3dtools_adreno200.so ../../../vendor/htc/$DEVICE/proprietary/libq3dtools_adreno200.so 96 vendor/htc/__DEVICE__/proprietary/libEGL_adreno200.so:/system/lib/egl/libEGL_adreno200.so \\ 97 vendor/htc/__DEVICE__/proprietary/libGLESv1_CM_adreno200.so:/system/lib/egl/libGLESv1_CM_adreno200.so \\ 98 vendor/htc/__DEVICE__/proprietary/libGLESv2_adreno200.so:/system/lib/egl/libGLESv2_adreno200.so \\ 99 vendor/htc/__DEVICE__/proprietary/libq3dtools_adreno200.so:/system/lib/egl/libq3dtools_adreno200.so \\
|
/frameworks/base/cmds/bootanimation/ |
BootAnimation.h | 29 #include <EGL/egl.h>
|
/frameworks/base/opengl/tests/gl_jni/src/com/android/gljni/ |
GLJNIView.java | 42 import javax.microedition.khronos.egl.EGL10; 43 import javax.microedition.khronos.egl.EGLConfig;
|
/frameworks/base/opengl/tests/linetex/ |
linetex.cpp | 24 #include <EGL/egl.h>
|
/frameworks/base/opengl/tests/testPauseResume/src/com/android/test/ |
TestView.java | 42 import javax.microedition.khronos.egl.EGL10; 43 import javax.microedition.khronos.egl.EGLConfig;
|
/frameworks/base/opengl/tests/angeles/ |
app-linux.cpp | 52 #include <EGL/egl.h> 100 fprintf(stderr,"%s(): egl error 0x%x (%s)\n", 118 fprintf(stderr, "EGL Error: 0x%04x\n", (int)error);
|
/frameworks/base/opengl/tests/gl2_java/src/com/android/gl2java/ |
GL2JavaView.java | 30 import javax.microedition.khronos.egl.EGL10; 31 import javax.microedition.khronos.egl.EGLConfig; 32 import javax.microedition.khronos.egl.EGLContext; 33 import javax.microedition.khronos.egl.EGLDisplay;
|
/ndk/samples/san-angeles/jni/ |
importgl.h | 36 #include <GLES/egl.h> 45 /* Dynamically fetches pointers to the egl & gl functions. 51 /* Frees the handle to egl & gl functions library. 115 // Redirect egl* and gl* function calls to funcPtr_egl* and funcPtr_gl*.
|
/development/samples/GlobalTime/src/com/android/globaltime/ |
GlobalTime.java | 29 import javax.microedition.khronos.egl.*; 268 * Creates an egl context. If the state of the activity is right, also 269 * creates the egl surface. Otherwise the surface will be created in a 273 EGL10 egl = (EGL10)EGLContext.getEGL(); local 276 EGLDisplay dpy = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); 278 egl.eglInitialize(dpy, version); 285 egl.eglChooseConfig(dpy, configSpec, configs, 1, num_config); 288 mEGLContext = egl.eglCreateContext(dpy, mEGLConfig, 305 mEGLSurface = egl.eglCreateWindowSurface(mEGLDisplay, mEGLConfig, 307 egl.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, 322 EGL10 egl = (EGL10)EGLContext.getEGL(); local 1299 EGL10 egl = (EGL10)EGLContext.getEGL(); local [all...] |