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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /external/chromium_org/third_party/mesa/src/include/GLES/
egl.h 2 * Skeleton egl.h to provide compatibility for early GLES 1.0
4 * in egl.h leading applications to include only egl.h
12 #include <EGL/egl.h>
  /external/mesa3d/include/GLES/
egl.h 2 * Skeleton egl.h to provide compatibility for early GLES 1.0
4 * in egl.h leading applications to include only egl.h
12 #include <EGL/egl.h>
  /frameworks/native/opengl/include/GLES/
egl.h 2 * Skeleton egl.h to provide compatibility for early GLES 1.0
4 * in egl.h leading applications to include only egl.h
12 #include <EGL/egl.h>
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
libEGL.cpp 7 // libEGL.cpp: Implements the exported EGL functions.
22 bool validateDisplay(egl::Display *display)
26 return egl::error(EGL_BAD_DISPLAY, false);
31 return egl::error(EGL_NOT_INITIALIZED, false);
37 bool validateConfig(egl::Display *display, EGLConfig config)
46 return egl::error(EGL_BAD_CONFIG, false);
52 bool validateContext(egl::Display *display, gl::Context *context)
61 return egl::error(EGL_BAD_CONTEXT, false);
67 bool validateSurface(egl::Display *display, egl::Surface *surface
    [all...]
  /external/chromium_org/gpu/gles2_conform_support/egl/
surface.h 8 #include <EGL/egl.h>
12 namespace egl { namespace
27 } // namespace egl
surface.cc 5 #include "gpu/gles2_conform_support/egl/surface.h"
7 namespace egl { namespace
15 } // namespace egl
  /device/generic/goldfish/opengl/system/renderControl_enc/
renderControl_types.h 18 #include <EGL/egl.h>
  /external/chromium_org/third_party/angle_dx11/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...]
  /sdk/emulator/opengl/host/libs/renderControl_dec/
renderControl_types.h 18 #include <EGL/egl.h>
  /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/jmonkeyengine/engine/src/android/com/jme3/system/android/
AndroidConfigChooser.java 7 import javax.microedition.khronos.egl.EGL10;
8 import javax.microedition.khronos.egl.EGLConfig;
9 import javax.microedition.khronos.egl.EGLDisplay;
12 * AndroidConfigChooser is used to determine the best suited EGL Config
54 public EGLConfig chooseConfig(EGL10 egl, EGLDisplay display) {
55 logger.info("GLSurfaceView asks for egl config, returning: ");
56 logEGLConfig(choosenConfig, display, egl);
63 * @param egl
67 public boolean findConfig(EGL10 egl, EGLDisplay display) {
71 choosenConfig = compChooser.chooseConfig(egl, display)
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 21 import javax.microedition.khronos.egl.EGL;
92 * Wrap an existing EGL interface in a new EGL interface that adds
94 * @param egl the existing GL interface. Must implement EGL and EGL10. May
98 * @return the wrapped EGL interface.
100 public static EGL wrap(EGL egl, int configFlags, Writer log)
    [all...]
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...]
  /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...]
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 42 import javax.microedition.khronos.egl.EGL10;
43 import javax.microedition.khronos.egl.EGLConfig;
44 import javax.microedition.khronos.egl.EGLContext;
45 import javax.microedition.khronos.egl.EGLDisplay;
80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
82 checkEglError("Before eglCreateContext", egl);
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
85 checkEglError("After eglCreateContext", egl);
89 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
90 egl.eglDestroyContext(display, context)
    [all...]
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 42 import javax.microedition.khronos.egl.EGL10;
43 import javax.microedition.khronos.egl.EGLConfig;
44 import javax.microedition.khronos.egl.EGLContext;
45 import javax.microedition.khronos.egl.EGLDisplay;
80 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
82 checkEglError("Before eglCreateContext", egl);
84 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
85 checkEglError("After eglCreateContext", egl);
89 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
90 egl.eglDestroyContext(display, context)
    [all...]
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 35 import javax.microedition.khronos.egl.EGL10;
36 import javax.microedition.khronos.egl.EGLConfig;
37 import javax.microedition.khronos.egl.EGLContext;
38 import javax.microedition.khronos.egl.EGLDisplay;
83 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) {
85 checkEglError("Before eglCreateContext", egl);
87 EGLContext context = egl.eglCreateContext(display, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
88 checkEglError("After eglCreateContext", egl);
92 public void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context) {
93 egl.eglDestroyContext(display, context)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 32 import javax.microedition.khronos.egl.EGL10;
33 import javax.microedition.khronos.egl.EGLConfig;
34 import javax.microedition.khronos.egl.EGLContext;
35 import javax.microedition.khronos.egl.EGLDisplay;
36 import javax.microedition.khronos.egl.EGLSurface;
87 EGL10 egl = (EGL10) EGLContext.getEGL(); local
88 EGLDisplay eglDisplay = createDefaultDisplay(egl);
89 EGLConfig eglConfig = chooseEglConfig(egl, eglDisplay);
90 EGLContext eglContext = createContext(egl, eglDisplay, eglConfig);
91 EGLSurface eglSurface = createSurface(egl, eglDisplay, width, height)
224 EGL10 egl = (EGL10) EGLContext.getEGL(); local
    [all...]
  /external/chromium_org/gpu/gles2_conform_support/gtf/
gtf_stubs.h 12 #include <EGL/egl.h>
13 #include <EGL/eglext.h>
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLConfigImpl.java 19 import javax.microedition.khronos.egl.*;

Completed in 3182 milliseconds

1 2 3 4 5 6 7 8 91011>>