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

1 2 3 4 5 6 78 91011>>

  /packages/apps/Gallery2/src/com/android/photos/views/
BlockingGLTextureView.java 28 import javax.microedition.khronos.egl.EGLConfig;
111 EGLConfig mEglConfig;
114 private EGLConfig chooseEglConfig() {
116 EGLConfig[] configs = new EGLConfig[1];
140 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
142 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attribList);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/views/
BlockingGLTextureView.java 28 import javax.microedition.khronos.egl.EGLConfig;
111 EGLConfig mEglConfig;
114 private EGLConfig chooseEglConfig() {
116 EGLConfig[] configs = new EGLConfig[1];
140 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
142 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attribList);
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 26 import javax.microedition.khronos.egl.EGLConfig;
169 EGLConfig eglConfig = chooseEglConfig();
170 if (eglConfig == null) {
171 throw new RuntimeException("eglConfig not initialized");
174 mEglContext = createContext(mEgl, mEglDisplay, eglConfig);
176 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, eglConfig, mSurface, null);
199 private static EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) {
201 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLRotationGuideRenderer.java 24 import javax.microedition.khronos.egl.EGLConfig;
90 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /cts/tests/tests/nativeopengl/standalone/jni/tests/
EGLCreateContext_test.cpp 71 ASSERT_NE((EGLConfig)0, mEglConfig);
112 EGLConfig mEglConfig;
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20NativeActivityOne.java 31 import javax.microedition.khronos.egl.EGLConfig;
134 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java 31 import javax.microedition.khronos.egl.EGLConfig;
96 * A given Android device may support multiple EGLConfig rendering configurations.
99 * GLSurfaceView has to do when starting to render is choose what EGLConfig to use.
101 * By default GLSurfaceView chooses a EGLConfig that has an RGB_888 pixel format,
104 * If you would prefer a different EGLConfig
402 * view will choose an EGLConfig that is compatible with the current
681 * that it still needs. The {@link #onSurfaceCreated(GL10, EGLConfig)} method
709 * @param config the EGLConfig of the created surface. Can be used
712 void onSurfaceCreated(GL10 gl, EGLConfig config);
770 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig)
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
GLESSurfaceView.java 27 import javax.microedition.khronos.egl.EGLConfig;
58 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchRotateActivity.java 19 import javax.microedition.khronos.egl.EGLConfig;
151 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /external/chromium_org/content/common/gpu/media/
dxva_video_decode_accelerator.h 67 typedef void* EGLConfig;
176 EGLConfig egl_config_;
  /external/deqp/framework/egl/
egluConfigFilter.cpp 35 bool ConfigFilter::match (EGLDisplay display, EGLConfig config) const
103 bool FilterList::match (const EGLDisplay display, EGLConfig config) const
egluConfigInfo.hpp 105 void queryConfigInfo (EGLDisplay display, EGLConfig config, ConfigInfo* dst);
egluNativePixmap.cpp 66 NativePixmap* NativePixmapFactory::createPixmap (NativeDisplay* nativeDisplay, EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height) const
  /external/deqp/modules/egl/
teglCreateContextTests.cpp 52 void executeForConfig (tcu::egl::Display& display, EGLConfig config);
64 void CreateContextCase::executeForConfig (tcu::egl::Display& display, EGLConfig config)
teglTestCase.hpp 66 eglu::NativeWindow* createNativeWindow (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height, eglu::WindowParams::Visibility visibility);
67 eglu::NativePixmap* createNativePixmap (EGLDisplay display, EGLConfig config, const EGLAttrib* attribList, int width, int height);
teglApiCase.hpp 61 bool getConfig (EGLConfig* cfg, const eglu::FilterList& filters);
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 25 import javax.microedition.khronos.egl.EGLConfig;
48 EGLConfig[] configs, int config_size, int[] num_config) {
78 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config,
95 EGLConfig config, int[] attrib_list) {
110 EGLConfig config, Object native_pixmap, int[] attrib_list) {
126 EGLConfig config, Object native_window, int[] attrib_list) {
165 public boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config,
180 public boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs,
GLSurfaceView.java 25 import javax.microedition.khronos.egl.EGLConfig;
92 * A given Android device may support multiple EGLConfig rendering configurations.
95 * GLSurfaceView has to do when starting to render is choose what EGLConfig to use.
97 * By default GLSurfaceView chooses a EGLConfig that has an RGB_888 pixel format,
100 * If you would prefer a different EGLConfig
398 * view will choose an EGLConfig that is compatible with the current
672 * that it still needs. The {@link #onSurfaceCreated(GL10, EGLConfig)} method
700 * @param config the EGLConfig of the created surface. Can be used
703 void onSurfaceCreated(GL10 gl, EGLConfig config);
755 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig)
    [all...]
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 24 import javax.microedition.khronos.egl.EGLConfig;
37 public void onSurfaceCreated(GL10 gl, EGLConfig config) {
  /device/generic/goldfish/opengl/system/egl/
egl.cpp 133 EGLContext_t::EGLContext_t(EGLDisplay dpy, EGLConfig config, EGLContext_t* shareCtx) :
172 EGLConfig config;
175 egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
209 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
231 EGLDisplay dpy, EGLConfig config, EGLint surfType,
241 EGLDisplay dpy, EGLConfig config, EGLint surfType,
250 EGLDisplay dpy, EGLConfig config, EGLint surfType,
285 EGLDisplay dpy, EGLConfig config, EGLint surfType,
335 static egl_pbuffer_surface_t* create(EGLDisplay dpy, EGLConfig config,
346 egl_pbuffer_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfType
    [all...]
  /external/chromium_org/third_party/skia/include/views/
SkOSWindow_Win.h 78 EGLConfig fConfig;
  /external/skia/include/views/
SkOSWindow_Win.h 78 EGLConfig fConfig;
  /frameworks/base/libs/hwui/renderthread/
EglManager.h 31 // and EGLConfig, which are re-used by CanvasContext
72 EGLConfig mEglConfig;
  /frameworks/native/cmds/flatland/
GLHelper.h 84 EGLConfig mConfig;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererContext.cpp 20 RendererContext * RendererContext::create(EGLDisplay dpy, EGLConfig config, RendererContext *shareCtx, int version)

Completed in 456 milliseconds

1 2 3 4 5 6 78 91011>>