How to Check Your Display Card: Methods for Every Setup
Knowing what graphics card is inside your machine sounds simple — but the answer lives in different places depending on your operating system, whether you're using a desktop or laptop, and how deep you want to dig. Here's how to find it reliably, and what the information actually tells you.
Why Checking Your Display Card Matters
Your display card (also called a GPU, graphics card, or video card) handles everything visual — rendering images, driving your monitor, powering games, and accelerating video editing software. Knowing your exact model matters when:
- Installing or updating drivers
- Checking if your system meets game or software requirements
- Diagnosing display issues or crashes
- Deciding whether an upgrade makes sense
The GPU name alone isn't always enough. You'll often need details like VRAM (Video RAM), driver version, and DirectX or OpenGL support level — all of which are available through the same tools.
How to Check Your Display Card on Windows 🖥️
Windows offers several built-in ways to identify your GPU, ranging from quick to detailed.
Method 1: Device Manager
- Right-click the Start button and select Device Manager
- Expand the Display adapters category
- Your GPU name(s) will be listed here
This is the fastest method, but it gives you the name only — no VRAM, no driver details.
Method 2: DirectX Diagnostic Tool (dxdiag)
- Press Windows + R, type
dxdiag, and hit Enter - Click the Display tab
Here you'll find:
- GPU name and manufacturer
- Total available graphics memory (approximate)
- DirectX feature levels supported
- Driver version and date
Note: The memory figure shown in dxdiag includes shared system RAM, not just dedicated VRAM — so it can look inflated compared to what's printed on the card's spec sheet.
Method 3: Task Manager
- Press Ctrl + Shift + Esc to open Task Manager
- Click Performance, then select GPU from the left panel
This shows real-time GPU usage, dedicated VRAM, and shared memory — useful for seeing how your card performs under load, not just what it's called.
Method 4: System Information
- Press Windows + R, type
msinfo32, and press Enter - Navigate to Components → Display
This view includes driver details, resolution, and adapter RAM in a single screen.
How to Check Your Display Card on macOS 🍎
Apple makes this straightforward:
- Click the Apple menu (top-left corner)
- Select About This Mac
- Look for the Graphics or Displays section on the overview screen
For more detail:
- Go to Apple menu → About This Mac → System Report
- Under Hardware, select Graphics/Displays
This shows GPU name, VRAM, vendor ID, and which display is connected to which GPU — relevant on Macs with both integrated and discrete graphics.
How to Check Your Display Card on Linux
The method depends slightly on your distribution, but these commands work broadly:
lspci | grep -i vga— lists the GPU identified by the systemlspci | grep -i nvidiaorlspci | grep -i amd— brand-specific queriesglxinfo | grep "OpenGL renderer"— shows the active rendering GPU (requiresmesa-utils)
For systems running the NVIDIA proprietary driver, nvidia-smi gives detailed output including VRAM usage, driver version, and temperature.
Integrated vs. Discrete GPUs: What You Might See
Many systems — especially laptops — have two GPUs:
| GPU Type | What It Is | Typical Use |
|---|---|---|
| Integrated GPU | Built into the CPU (e.g., Intel Iris Xe, AMD Radeon Graphics) | General desktop use, light tasks |
| Discrete GPU | Dedicated card with its own VRAM (e.g., NVIDIA GeForce, AMD Radeon RX) | Gaming, video editing, 3D rendering |
If you see two entries in Device Manager or dxdiag, that's normal. Laptops with NVIDIA Optimus or AMD Switchable Graphics automatically shift between them based on workload. The discrete GPU handles demanding tasks; the integrated GPU handles everything else to conserve battery.
The card doing the heavy lifting may not always be the one actively listed first — which is why checking under load (via Task Manager's GPU panel) tells a more complete story.
What the Specs Actually Mean
Once you've found your GPU, the key figures to understand:
- VRAM: Dedicated video memory. More VRAM supports higher resolutions and more complex textures. 4GB is a common baseline; 8GB and above is typical for modern mid-range and high-end cards.
- Driver version: The software layer between your OS and the GPU. Outdated drivers are a common cause of display glitches and performance issues.
- DirectX feature level (Windows): Determines software compatibility. Most modern applications require DirectX 11 or 12.
- OpenGL / Vulkan support: Relevant for cross-platform applications and some creative software.
The Part That Varies by Setup
The methods above will reliably surface your GPU name and basic specs — but what that information means for you depends on factors only you can evaluate. A discrete GPU that's perfectly adequate for video conferencing and spreadsheets may be the bottleneck for someone running 3D modeling software. A laptop with switchable graphics may show different active GPUs depending on power settings or software configuration.
Your driver version, OS version, whether you're on battery or plugged in, and how your manufacturer configured GPU switching all shape what you're actually working with — and whether what you find matches what you expected.