Registry / other / egl
library2022-12-04vcpkgunverified

EGL is an interface between Khronos rendering APIs (such as OpenGL, OpenGL ES or OpenVG) and the underlying native platform windowing system.

vcpkg install egl
INSTALL
IMPORT
SIG · EGL
E
egl
othercppv2022-12-04
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

EGL/egl.h
#include <EGL/egl.h>

Initialize EGL display

#include <EGL/egl.h> #include <iostream> int main() { EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); if (display == EGL_NO_DISPLAY) { std::cerr << "Failed to get EGL display" << std::endl; return 1; } EGLint major, minor; eglInitialize(display, &major, &minor); std::cout << "EGL version " << major << "." << minor << std::endl; return 0; }
Debug
Known issues
gotchaPlatform-specific; requires windowing system headers (X11, Wayland, etc.)
fix
Ensure appropriate platform libraries are linked (e.g., X11 on Linux)
affects: *
Upgrade
Version history
2022-12-04latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
7 hits · last 30 days
node
6
Meta
1
Resources

No resource links recorded.

egl — pip install egl · libregistry