Skip to content

22_01

Compare
Choose a tag to compare
@gkv311 gkv311 released this 16 Jan 12:31
· 13 commits to master since this release

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).