/external/chromium_org/gpu/gles2_conform_support/egl/ |
surface.cc | 5 #include "gpu/gles2_conform_support/egl/surface.h" 7 namespace egl { namespace 15 } // namespace egl
|
config.cc | 5 #include "gpu/gles2_conform_support/egl/config.h" 7 namespace egl { namespace 152 } // namespace egl
|
surface.h | 8 #include <EGL/egl.h> 12 namespace egl { namespace 27 } // namespace egl
|
display.cc | 5 #include "gpu/gles2_conform_support/egl/display.h" 16 #include "gpu/gles2_conform_support/egl/config.h" 17 #include "gpu/gles2_conform_support/egl/surface.h" 24 namespace egl { namespace 81 const egl::Config* cfg = static_cast<egl::Config*>(config); 274 } // namespace egl
|
display.h | 8 #include <EGL/egl.h> 32 namespace egl { namespace 101 } // namespace egl
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
EGL.java | 17 package javax.microedition.khronos.egl; 19 public interface EGL {
|
EGLConfig.java | 17 package javax.microedition.khronos.egl;
|
EGLDisplay.java | 17 package javax.microedition.khronos.egl;
|
EGLSurface.java | 17 package javax.microedition.khronos.egl;
|
EGL11.java | 17 package javax.microedition.khronos.egl;
|
EGLContext.java | 17 package javax.microedition.khronos.egl; 23 private static final EGL EGL_INSTANCE = new com.google.android.gles_jni.EGLImpl(); 25 public static EGL getEGL() {
|
/cts/tests/tests/effect/src/android/effect/cts/ |
GLEnv.java | 23 import javax.microedition.khronos.egl.*; 37 EGL10 egl = (EGL10)EGLContext.getEGL(); local 39 mEGLDisplay = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); 43 egl.eglInitialize(mEGLDisplay, version); 54 egl.eglChooseConfig(mEGLDisplay, configSpec, configs, 1, num_config); 57 throw new RuntimeException("Could not find a suitable config for EGL context!"); 62 mEGLContext = egl.eglCreateContext(mEGLDisplay, mEGLConfig, EGL10.EGL_NO_CONTEXT, attribs); 66 mEGLSurface = egl.eglCreatePbufferSurface(mEGLDisplay, mEGLConfig, surfaceSize); 71 EGL10 egl = (EGL10)EGLContext.getEGL(); local 72 egl.eglMakeCurrent(mEGLDisplay, mEGLSurface, mEGLSurface, mEGLContext) 96 EGL10 egl = (EGL10)EGLContext.getEGL(); local 102 EGL10 egl = (EGL10)EGLContext.getEGL(); local [all...] |
/external/chromium_org/third_party/angle/src/libEGL/ |
Config.cpp | 7 // Config.cpp: Implements the egl::Config class, describing the format, type 8 // and size for an egl::Surface. Implements EGLConfig and related functionality. 9 // [EGL 1.4] section 3.4 page 15. 23 namespace egl namespace 140 // [EGL] section 3.4.1 page 24 328 const egl::Config *ConfigSet::get(EGLConfig configHandle)
|
main.h | 13 #include <EGL/egl.h> 14 #include <EGL/eglext.h> 16 namespace egl namespace 55 egl::setCurrentError(EGL_SUCCESS);
|
Display.h | 7 // Display.h: Defines the egl::Display class, representing the abstract 9 // [EGL 1.4] section 2.1.2 page 3. 26 namespace egl namespace 38 static egl::Display *getDisplay(EGLNativeDisplayType displayId); 47 void destroySurface(egl::Surface *surface); 53 bool isValidSurface(egl::Surface *surface);
|
main.cpp | 46 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); 89 namespace egl namespace 163 egl::setCurrentError(errorCode);
|
Surface.h | 7 // Surface.h: Defines the egl::Surface class, representing a drawing surface 9 // Implements EGLSurface and related functionality. [EGL 1.4] section 2.2 page 3. 15 #include <EGL/egl.h> 29 namespace egl namespace 37 Surface(Display *display, const egl::Config *config, HWND window, EGLint postSubBufferSupported); 38 Surface(Display *display, const egl::Config *config, HANDLE shareHandle, EGLint width, EGLint height, EGLenum textureFormat, EGLenum textureTarget); 84 const egl::Config *mConfig; // EGL config surface was created with
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
main.h | 15 namespace egl namespace 28 egl::Display *display; 31 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface); 35 egl::Display *getDisplay(); 56 // Exported functions for use by EGL 59 void glMakeCurrent(gl::Context *context, egl::Display *display, egl::Surface *surface); 61 rx::Renderer *glCreateRenderer(egl::Display *display, HDC hDc, EGLNativeDisplayType displayId); 65 bool __stdcall glBindTexImage(egl::Surface *surface) [all...] |
Texture.h | 23 namespace egl namespace 160 virtual void bindTexImage(egl::Surface *surface); 189 egl::Surface *mSurface;
|
/frameworks/native/opengl/libs/ |
Android.mk | 4 # Build META EGL library 7 egl.cfg_config_module := 12 LOCAL_MODULE := egl.cfg 15 LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/egl 18 egl.cfg_config_module := $(LOCAL_MODULE) 24 EGL/egl_tls.cpp \ 25 EGL/egl_cache.cpp \ 26 EGL/egl_display.cpp \ 27 EGL/egl_object.cpp \ 28 EGL/egl.cpp [all...] |
/frameworks/native/opengl/libs/EGL/ |
egldefs.h | 45 egl_t egl; member in struct:android::egl_connection_t
|
/frameworks/base/opengl/java/android/opengl/ |
ManagedEGLContext.java | 19 import static javax.microedition.khronos.egl.EGL10.EGL_DEFAULT_DISPLAY; 20 import static javax.microedition.khronos.egl.EGL10.EGL_NO_DISPLAY; 24 import javax.microedition.khronos.egl.EGL10; 25 import javax.microedition.khronos.egl.EGLContext; 26 import javax.microedition.khronos.egl.EGLDisplay; 36 * terminate all EGL contexts so that this graphics driver memory can be 38 * class helps app developers participate in releasing their EGL context 43 * of the currently created EGL contexts in the process are being managed 111 // Need to check how many EGL contexts are actually running, 113 EGL10 egl = (EGL10) EGLContext.getEGL() local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/ |
Makefile | 8 -I$(TOP)/src/egl/main \ 9 -I$(TOP)/src/egl/wayland/wayland-drm/ \ 29 -I$(TOP)/src/egl/wayland/wayland-egl \ 30 -I$(TOP)/src/egl/wayland/wayland-drm \ 87 $(MKLIB) -o egl -static $(EGL_OBJECTS) 105 define egl-cc 113 $(call egl-cc,x11) 116 $(call egl-cc,wayland) 119 $(call egl-cc,drm [all...] |
/external/mesa3d/src/gallium/state_trackers/egl/ |
Makefile | 8 -I$(TOP)/src/egl/main \ 9 -I$(TOP)/src/egl/wayland/wayland-drm/ \ 29 -I$(TOP)/src/egl/wayland/wayland-egl \ 30 -I$(TOP)/src/egl/wayland/wayland-drm \ 87 $(MKLIB) -o egl -static $(EGL_OBJECTS) 105 define egl-cc 113 $(call egl-cc,x11) 116 $(call egl-cc,wayland) 119 $(call egl-cc,drm [all...] |
/development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/ |
GL2JNIView.java | 43 import javax.microedition.khronos.egl.EGL10; 44 import javax.microedition.khronos.egl.EGLConfig; 45 import javax.microedition.khronos.egl.EGLContext; 46 import javax.microedition.khronos.egl.EGLDisplay; 112 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { 114 checkEglError("Before eglCreateContext", egl); 116 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); 117 checkEglError("After eglCreateContext", egl); 121 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) { 122 egl.eglDestroyContext(display, context) [all...] |