22_01
wglinfo is a small utility printing information about OpenGL library available in Windows system in similar way as glxinfo does on Linux.
In case, if libEGL.dll (e.g. Angle or another implementation) is in PATH, it also prints information about EGL/GLES.
The output includes:
- WGL
- WGL extensions list;
- OpenGL context information (name, version, extensions);
- Compatibility Profile (created by default);
- Core Profile (
WGL_CONTEXT_CORE_PROFILE_BIT_ARB
); - Software implementation (
WGL_NO_ACCELERATION_ARB
);
- List of visuals;
- EGL
- EGL name, version and extensions list;
- OpenGL ES context information (name, version, extensions);
- List of configs.
New in this release:
- Added listing of EGL configs into output;
- Improved verbose formatting of Visuals (
-v
option).