/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
EGLConfig.java | 19 public abstract class EGLConfig
|
/frameworks/base/opengl/java/android/opengl/ |
EGLConfig.java | 21 * Wrapper class for native EGLConfig objects. 24 public class EGLConfig extends EGLObjectHandle { 25 private EGLConfig(int handle) { 32 if (!(o instanceof EGLConfig)) return false; 34 EGLConfig that = (EGLConfig) o;
|
/frameworks/native/opengl/tools/glgen/static/egl/ |
EGLConfig.java | 21 * Wrapper class for native EGLConfig objects. 24 public class EGLConfig extends EGLObjectHandle { 25 private EGLConfig(int handle) { 32 if (!(o instanceof EGLConfig)) return false; 34 EGLConfig that = (EGLConfig) o;
|
/device/generic/goldfish/opengl/system/egl/ |
eglDisplay.h | 51 EGLBoolean getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value); 52 EGLBoolean setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value); 53 EGLBoolean getConfigGLPixelFormat(EGLConfig config, GLenum * format); 54 EGLBoolean getConfigNativePixelFormat(EGLConfig config, PixelFormat * format); 56 void dumpConfig(EGLConfig config); 61 EGLBoolean getAttribValue(EGLConfig config, EGLint attribIdxi, EGLint * value); 62 EGLBoolean setAttribValue(EGLConfig config, EGLint attribIdxi, EGLint value);
|
eglContext.h | 29 EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx); 33 EGLConfig config;
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
EGLConfigImpl.java | 21 public class EGLConfigImpl extends EGLConfig {
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
egltypes.h | 7 typedef void *EGLConfig;
|
/sdk/emulator/opengl/tests/ut_renderer/ |
RendererSurface.h | 31 EGLConfig eglConfig() { return m_config; } 35 static EGLConfig getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config); 40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) : 48 EGLConfig m_config;
|
/frameworks/native/opengl/tests/include/ |
EGLUtils.h | 43 EGLConfig* outConfig); 49 EGLConfig* outConfig); 80 EGLConfig* outConfig) 94 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs); 101 EGLConfig config = NULL; 125 EGLConfig* outConfig)
|
glTestLib.h | 32 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config);
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Display.h | 40 bool getConfigs(EGLConfig *configs, const EGLint *attribList, EGLint configSize, EGLint *numConfig); 41 bool getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value); 43 EGLSurface createWindowSurface(HWND window, EGLConfig config, const EGLint *attribList); 44 EGLSurface createOffscreenSurface(EGLConfig config, HANDLE shareHandle, const EGLint *attribList); 45 EGLContext createContext(EGLConfig configHandle, const gl::Context *shareContext, bool notifyResets, bool robustAccess); 51 bool isValidConfig(EGLConfig config);
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
eglCreateWindowSurface.java | 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) 5 EGLConfig config, 13 EGLConfig config, 20 EGLConfig config,
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
FBConfig.h | 40 EGLConfig getEGLConfig() const { return m_eglConfig; } 47 FBConfig(EGLDisplay p_eglDpy, EGLConfig p_eglCfg); 56 EGLConfig m_eglConfig;
|
/external/chromium_org/gpu/gles2_conform_support/egl/ |
display.h | 52 bool IsValidConfig(EGLConfig config); 54 EGLConfig* configs, EGLint config_size, EGLint* num_config); 55 bool GetConfigs(EGLConfig* configs, EGLint config_size, EGLint* num_config); 56 bool GetConfigAttrib(EGLConfig config, EGLint attribute, EGLint* value); 61 EGLSurface CreateWindowSurface(EGLConfig config, 69 EGLContext CreateContext(EGLConfig config,
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
RendererEightShaderTest.java | 18 import javax.microedition.khronos.egl.EGLConfig; 30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
|
RendererNineShaderTest.java | 18 import javax.microedition.khronos.egl.EGLConfig; 30 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
|
RendererOneProgramTest.java | 18 import javax.microedition.khronos.egl.EGLConfig; 31 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
|
RendererElevenShaderTest.java | 19 import javax.microedition.khronos.egl.EGLConfig; 32 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
egl_proc.h | 28 typedef EGLBoolean (* eglGetConfigs_t) (EGLDisplay, EGLConfig*, EGLint, EGLint*); 29 typedef EGLBoolean (* eglChooseConfig_t) (EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*); 30 typedef EGLBoolean (* eglGetConfigAttrib_t) (EGLDisplay, EGLConfig, EGLint, EGLint*); 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*); 40 typedef EGLSurface (* eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*); 45 typedef EGLContext (* eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
|
/sdk/emulator/opengl/tests/EGL_host_wrapper/ |
egl_proc.h | 28 typedef EGLBoolean (* eglGetConfigs_t) (EGLDisplay, EGLConfig*, EGLint, EGLint*); 29 typedef EGLBoolean (* eglChooseConfig_t) (EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*); 30 typedef EGLBoolean (* eglGetConfigAttrib_t) (EGLDisplay, EGLConfig, EGLint, EGLint*); 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*); 40 typedef EGLSurface (* eglCreatePbufferFromClientBuffer_t) (EGLDisplay, EGLenum, EGLClientBuffer, EGLConfig, const EGLint*); 45 typedef EGLContext (* eglCreateContext_t) (EGLDisplay, EGLConfig, EGLContext, const EGLint*);
|
/frameworks/native/opengl/tools/glgen/specs/egl/ |
EGL14.spec | 6 EGLBoolean eglGetConfigs ( EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config ) 7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config ) 8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value ) 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 ) 18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) 23 EGLContext eglCreateContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
|
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/ |
AndroidConfigChooser.java | 8 import javax.microedition.khronos.egl.EGLConfig; 20 protected EGLConfig bestConfig = null; 21 protected EGLConfig fastestConfig = null; 22 protected EGLConfig choosenConfig = null; 54 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { 107 private int getPixelFormat(EGLConfig conf, EGLDisplay display, EGL10 egl) { 134 private int getOpenGLVersion(EGLConfig conf, EGLDisplay display, EGL10 egl) { 154 public void logEGLConfig(EGLConfig conf, EGLDisplay display, EGL10 egl) { 203 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { 218 EGLConfig[] configs = new EGLConfig[numConfigs] [all...] |
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/ |
GL2JNIView.java | 43 import javax.microedition.khronos.egl.EGLConfig; 80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { 84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 121 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { 131 EGLConfig[] configs = new EGLConfig[numConfigs]; 137 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, 138 EGLConfig[] configs) { 139 EGLConfig closestConfig = null [all...] |
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/ |
GLPerfView.java | 43 import javax.microedition.khronos.egl.EGLConfig; 80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { 84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 121 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { 131 EGLConfig[] configs = new EGLConfig[numConfigs]; 137 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, 138 EGLConfig[] configs) { 139 EGLConfig closestConfig = null [all...] |
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/ |
GLDualGL2View.java | 36 import javax.microedition.khronos.egl.EGLConfig; 83 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { 87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 124 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) { 134 EGLConfig[] configs = new EGLConfig[numConfigs]; 140 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display, 141 EGLConfig[] configs) { 142 EGLConfig closestConfig = null [all...] |