HomeSort by relevance Sort by last modified time
    Searched defs:eglDisplay (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/gpu/gles2_conform_support/
gles2_conform_support.c 14 EGLDisplay eglDisplay;
17 eglDisplay = eglGetDisplay(nativeDisplay);
18 eglInitialize(eglDisplay, &major, &minor);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
ThreadInfo.h 21 class EglDisplay;
25 ThreadInfo():eglDisplay(NULL),glesContext(NULL),objManager(NULL){}
28 EglDisplay* dpy,
34 EglDisplay* eglDisplay;
  /sdk/emulator/opengl/tests/ut_renderer/
RendererSurface.h 32 EGLDisplay eglDisplay() { return m_eglDisplay; }
34 static RendererSurface * create(EGLDisplay eglDisplay, SurfaceConfig config, NativeWindowing *nw);
35 static EGLConfig getEglConfig(EGLDisplay eglDisplay, SurfaceConfig config);
40 RendererSurface(EGLDisplay display, NativeWindowType window, EGLSurface surface, EGLConfig config) :
47 EGLDisplay m_eglDisplay;
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.h 32 class eglDisplay
35 eglDisplay();
36 ~eglDisplay();
eglDisplay.cpp 16 #include "eglDisplay.h"
56 eglDisplay::eglDisplay() :
74 eglDisplay::~eglDisplay()
79 bool eglDisplay::initialize(EGLClient_eglInterface *eglIface)
190 void eglDisplay::processConfigs()
202 void eglDisplay::terminate()
226 EGLClient_glesInterface *eglDisplay::loadGLESClientAPI(const char *libName,
335 const char *eglDisplay::queryString(EGLint name
    [all...]
  /external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
esUtil.h 78 EGLDisplay eglDisplay;
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 51 static inline EGLDisplay getDisplay(JNIEnv* env, jobject o) {
53 return (EGLDisplay)env->GetIntField(o, gDisplay_EGLDisplayFieldID);
125 EGLDisplay dpy = getDisplay(_env, display);
147 EGLDisplay dpy = getDisplay(_env, display);
166 EGLDisplay dpy = getDisplay(_env, display);
180 EGLDisplay dpy = getDisplay(_env, display);
181 egl_display_t* eglDisplay = get_display_nowake(dpy);
182 return eglDisplay ? eglDisplay->getRefsCount() : 0;
198 EGLDisplay dpy = getDisplay(_env, display)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 35 import javax.microedition.khronos.egl.EGLDisplay;
62 private static EGLDisplay mConfiguredDisplay;
65 private EGLDisplay mDisplay;
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);
92 RenderTarget result = new RenderTarget(eglDisplay, eglContext, eglSurface, 0, true, true);
319 private static EGLConfig chooseEglConfig(EGL10 egl, EGLDisplay display)
    [all...]

Completed in 1140 milliseconds