About 8,730,000 results
Open links in new tab
  1. What is the relationship between EGL and OpenGL?

    The intent of EGL is to ease developers' lives by creating a portable and standard way to initialize and get context of supported graphics API, without worrying about platform specific issues, as …

  2. EGL guide for beginners - Stack Overflow

    EGL 1.5 is a lowlevel system API for creating OpenGL and OpenGL ES contexts; connecting those contexts to the window system; and sharing graphics buffers and grapics events …

  3. linux - What is EGL And How Can I Use It - Stack Overflow

    EGL is a window system-independent equivalent to the GLX and WGL APIs, which respectively enable OpenGL support in X and Microsoft Windows. It is an interface between Khronos …

  4. wsl2 - How to fix errors in WSL GUI - Stack Overflow

    Nov 3, 2024 · I just installed WSL2 and then installed nautilus. When I run it I get: MESA: error: ZINK: failed to choose pdev libEGL warning: egl: failed to create dri2 screen MESA: error: …

  5. linux - How do I set the EGL default display? - Stack Overflow

    Feb 8, 2021 · The EGL default display is what the drivers assume to be the most reasonable choice under most circumstances. To deal with a sitation like yours you'd have to iterate over …

  6. Ways to reduce memory transfer overhead in OpenGL ES 2.0 / …

    Aug 31, 2023 · I could also try to compile the LIMA drivers and get access to GL 2.1, but I am still trying to learn GLES and EGL for this, so I am wary about stacking more things to learn on …

  7. How to create a native X11 window for use with EGL

    Oct 20, 2020 · How does one create a native X11 window that works in EGL? Going through the eglIntro there is little documentation on the matter. Alternatively, is there a way to create native …

  8. Please explain to me what exactly is EGL in Android?

    Dec 21, 2019 · That's where the EGL place is - it defines an API that gets translated to underlying windowing system calls by some library. Like GLX and WGL is responsible for creation of …

  9. eglInitialize failed with EGL_NOT_INITIALIZED - Stack Overflow

    Aug 8, 2022 · I am trying to run a 3D human model generator, where EGL is used. When I run the following code: import OpenGL.EGL as egl from ctypes import pointer egl_display = …

  10. What's the difference/relationship between GLFW and EGL?

    Aug 28, 2023 · EGL was originally Kronos' centrally-advocated solution for binding OpenGL ES to the native windowing system on embedded devices, and as well as Android is available on the …