V C
V C

Reputation:

How can display driver version be obtained on the Mac?

How can the display driver version be programatically obtained on the Mac?


Related:

Upvotes: 3

Views: 16730

Answers (3)

Jim Dovey
Jim Dovey

Reputation: 11156

Look a IOKit and the IORegistryExplorer application.

Specifically, you'll want to search IOKit for devices with a name of 'display' and you'll get the device node from which you can pull data. Use the IORegistryExplorer application to see what sort of attributes are available from that object, and what types of data they are, etc.

Upvotes: 3

From the command line run system_profiler. Get the same data as the GUI based answer.

Upvotes: 0

jdiaz
jdiaz

Reputation: 7472

Apple -> About This Mac -> More Info

Expand the Hardware drop-down and click on the Graphics/Display option

This will display all the information about the current video card and driver info.

Upvotes: 2

Related Questions