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 sRGB/Linear colorspace for WGL visuals using
WGL_EXT_colorspace
extension (with-verbose
option); - Fixed crash in EGL configs listing when library is unavailable.
[WGL] 220 WGL Visuals
Visual ID: 1
color: R8G8B8A0 (TrueColor, 32, Linear) depth: 24 stencil: 0
doubleBuffer: 0 stereo: 0 renderType: rgba level: 0
auxBuffers: 4 accum: R16G16B16A16
...
Visual ID: 96
color: R16G16B16A16 (DeepColor, 64, Linear) depth: 0 stencil: 8
doubleBuffer: 1 stereo: 0 renderType: rgba level: 0
auxBuffers: 4 accum: R0G0B0A0
Visual ID: 97
color: R8G8B8A0 (TrueColor, 32, sRGB) depth: 24 stencil: 0
doubleBuffer: 0 stereo: 0 renderType: rgba level: 0
auxBuffers: 4 accum: R16G16B16A16