HomeSort by relevance Sort by last modified time
    Searched refs:egl (Results 176 - 200 of 403) sorted by null

1 2 3 4 5 6 78 91011>>

  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglSurface.h 19 #include <EGL/egl.h>
20 #include <EGL/eglinternalplatform.h>
  /sdk/emulator/opengl/host/libs/libOpenglRender/
Android.mk 54 # use Translator's egl/gles headers
76 # use Translator's egl/gles headers
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLTextureViewActivity.java 36 import javax.microedition.khronos.egl.EGL10;
37 import javax.microedition.khronos.egl.EGLConfig;
38 import javax.microedition.khronos.egl.EGLContext;
39 import javax.microedition.khronos.egl.EGLDisplay;
40 import javax.microedition.khronos.egl.EGLSurface;
335 Log.w(LOG_TAG, "EGL error = 0x" + Integer.toHexString(error));
404 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
406 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
  /cts/tests/tests/hardware/src/android/hardware/cts/
CameraGLTest.java 54 import javax.microedition.khronos.egl.EGL10;
55 import javax.microedition.khronos.egl.EGLConfig;
56 import javax.microedition.khronos.egl.EGLContext;
57 import javax.microedition.khronos.egl.EGLDisplay;
255 EGL10 egl = (EGL10) EGLContext.getEGL(); local
256 EGLDisplay display = egl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY);
259 if (egl.eglInitialize(display, null)) {
261 if (egl.eglGetConfigs(display, null, 0, numConfigs)) {
263 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
266 if (egl.eglGetConfigAttrib(display, configs[i]
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
Renderer.cpp 8 // Renderer.cpp: Implements EGL dependencies for creating and destroying Renderer instances.
10 #include <EGL/eglext.h>
27 Renderer::Renderer(egl::Display *display) : mDisplay(display)
175 rx::Renderer *glCreateRenderer(egl::Display *display, HDC hDc, EGLNativeDisplayType displayId)
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
SConscript 2 # SConscript for egl-static target
10 '#/src/egl/main',
15 '#/src/gallium/state_trackers/egl',
34 egl,
43 'egl.c',
49 sources.append('#src/egl/main/egl.def')
121 target ='EGL',
129 env.Alias('egl-gallium', egl_gallium)
  /external/mesa3d/src/gallium/targets/egl-static/
SConscript 2 # SConscript for egl-static target
10 '#/src/egl/main',
15 '#/src/gallium/state_trackers/egl',
34 egl,
43 'egl.c',
49 sources.append('#src/egl/main/egl.def')
121 target ='EGL',
129 env.Alias('egl-gallium', egl_gallium)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ImageWallpaper.java 20 import static javax.microedition.khronos.egl.EGL10.*;
49 import javax.microedition.khronos.egl.EGL10;
50 import javax.microedition.khronos.egl.EGLConfig;
51 import javax.microedition.khronos.egl.EGLContext;
52 import javax.microedition.khronos.egl.EGLDisplay;
53 import javax.microedition.khronos.egl.EGLSurface;
657 Log.w(GL_LOG_TAG, "EGL error = " + GLUtils.getEGLErrorString(error));
746 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
748 return egl.eglCreateContext(eglDisplay, eglConfig, EGL_NO_CONTEXT, attrib_list);
  /cts/tests/tests/media/src/android/media/cts/
VideoSurfaceView.java 23 import javax.microedition.khronos.egl.EGLConfig;
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneShaderTest.java 21 import javax.microedition.khronos.egl.EGLConfig;
RendererThreeShaderTest.java 21 import javax.microedition.khronos.egl.EGLConfig;
  /cts/tests/tests/openglperf/jni/
OpenGlPerfNativeJni.cpp 17 #include <EGL/egl.h>
18 #define EGL_EGLEXT_PROTOTYPES // for egl*Sync*
19 #include <EGL/eglext.h>
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
RendererES2.cpp 18 #include <EGL/egl.h>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CubeRenderer.java 19 import javax.microedition.khronos.egl.EGLConfig;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
KubeRenderer.java 21 import javax.microedition.khronos.egl.EGLConfig;
  /device/lge/hammerhead/
BoardConfig.mk 68 BOARD_EGL_CFG := device/lge/hammerhead/egl.cfg
  /external/chromium_org/gpu/gles2_conform_support/egl/
config.cc 5 #include "gpu/gles2_conform_support/egl/config.h"
7 namespace egl { namespace
152 } // namespace egl
  /external/mesa3d/src/gallium/
Android.mk 30 targets/egl-static \
31 state_trackers/egl \
  /frameworks/base/libs/hwui/
Extensions.cpp 22 #include <EGL/egl.h>
23 #include <EGL/eglext.h>
65 // Query EGL extensions
131 ALOGD("Supported EGL extensions:\n%s", eglQueryString(eglGetCurrentDisplay(), EGL_EXTENSIONS));
  /frameworks/base/media/mca/filterfw/native/core/
gl_env.h 28 #include <EGL/egl.h>
58 // The GLEnv class provides functionality related to the EGL environment, which
60 // a new environment or base it off the currently active EGL environment. In
61 // order to do the latter, an EGL environment must be setup already (though not
131 // Obtain the environment's EGL surface.
152 // Obtain the environment's EGL context.
159 // Obtain the environment's EGL display.
171 // Returns true if there is any EGL context active in the current thread.
201 // Checks if the current environment is in an EGL error state. If so, i
    [all...]
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
CubeRenderer.java 19 import javax.microedition.khronos.egl.EGLConfig;
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 33 #include <EGL/egl.h>
34 #include <EGL/eglext.h>
  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 21 #include <EGL/egl.h>
22 #include <EGL/eglext.h>
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 20 #include <EGL/egl.h>
  /frameworks/native/opengl/tests/include/
EGLUtils.h 26 #include <EGL/egl.h>

Completed in 223 milliseconds

1 2 3 4 5 6 78 91011>>