Developing Games on Intel Graphics
If you are gaming on graphics integrated in your Intel Processor, this is the place for you! Find answers to your questions or post your issues with PC games
489 Discussions

Any programming way to query Intel GFX basic capability?

andyyinglin
Beginner
617 Views
Hi, Is there any way for my VC++ code to query the below basic parameters of Intel Graphics solution (9x5 let's say)? -GPU name -number of global video memory -shared memory -gpu clock rate -gpu name -video driver version -version of DirectX support -bus width Please give me some hint or advice. Code sample is welcome. Feel free to forward appropriately if this is not the correct sub-forum for this question. Thanks Andy
0 Kudos
1 Solution
Doraisamy_G_Intel
617 Views
Hi Andy,

You can get some of the information using DX SDK calls.

For example, theDXGI_ADAPTER_DESC provides the information on GPU name, vendor id, devide id, and video memory.

And, theD3DADAPTER_IDENTIFIER9 structureprovides information like device name, driver version and such.

Cheers,
-Ganesh

View solution in original post

0 Kudos
3 Replies
Doraisamy_G_Intel
617 Views

Stay tuned. Will get you some sample code for the info you are looking for.

0 Kudos
Doraisamy_G_Intel
618 Views
Hi Andy,

You can get some of the information using DX SDK calls.

For example, theDXGI_ADAPTER_DESC provides the information on GPU name, vendor id, devide id, and video memory.

And, theD3DADAPTER_IDENTIFIER9 structureprovides information like device name, driver version and such.

Cheers,
-Ganesh
0 Kudos
Philip_T_Intel1
Employee
617 Views
in addition, in the Samples->C++->Misc folder you might want to look at:
DXDiagReport
DXDiagOutput
VideoMemory.

they show you how to get information similar to what DXDiag provides, programmatically.
0 Kudos
Reply