I would like to know the Graphics Card Model Name in OpenGL or in Win32 cuz I have a memory leaks bug on a specific kind of Graphics Card (only Intel HD not all Intel).
This is the bug : https://software.intel.com/en-us/forums/developing-games-and-graphics-on-intel/topic/280679
The Vendor Name in OpenGL is not enough. Does someone know a way to get the name of the graphical card different than using Direct3D ? Or do you think that I can use D3D and OpenGL together? Get the graphics card model?
lspci
and parse its output or traverse/sys/bus/pci/devices/*
looking for all devices being of the class0x030000
(graphics controllers). My Google-Fu failed me finding the right APIs for doing this on modern Windows machines. It's certainly not part of the Win32 API and changes with each bump of the Windows driver programming model. – datenwolf