3

For a bug reporting function in my 3ds max Plugin I want to display information about the video card (model, driver info etc.).

I've already found out that information about the graphic card can be achieved from the registry:

HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Class\{4D36E968-E325-11CE-BFC1-08002BE10318}}\

Then there is a key for each graphic card beginning with 0000. On my notebook there are two such keys where the first one represents my on-board graphic card which can be ignored by my plugin.

How can I determine the name of the currently used graphics card?

4

2 に答える 2

4

これは、MSDNに記載されているように、DirectX10以降を使用して実行できます。

DirectX10はデフォルトでWindowsVistaに含まれ、DirectX 11はWindows7に含まれ、DirectX11.1はWindows8に含まれています。

于 2012-11-12T18:01:09.673 に答える
1

わかりませんが、「WMI」がその種のクエリに関連するAPIである可能性があることを思い出しました。

wmi video card:をグーグルで検索したところ、 Win32_VideoControllerクラスに必要な情報が含まれている可能性があります(ただし、それ以上のことはわかりません)。

于 2012-11-12T16:42:19.797 に答える