How to Find Out What Video Card You Have

Knowing your GPU is one of those basic system checks that comes up more often than you'd expect — before installing a game, troubleshooting a display issue, updating a driver, or checking whether your PC can handle a new application. The good news: finding this information takes less than a minute on most systems, and you have several ways to do it.

Why Knowing Your GPU Matters

Your GPU (Graphics Processing Unit), also called a video card or graphics card, handles everything your monitor displays — from your desktop wallpaper to high-resolution video to 3D rendering in games and creative software. When software lists "minimum requirements," the GPU spec is almost always on that list.

Knowing your exact GPU model tells you:

  • Which driver version you should be running
  • Whether your hardware meets a game's or application's system requirements
  • What display outputs your card supports (HDMI, DisplayPort, DVI)
  • How much dedicated video memory (VRAM) you have available

How to Check Your Video Card on Windows

Windows gives you multiple paths to the same answer. Pick whichever feels most natural.

Method 1: Device Manager

  1. Right-click the Start button and select Device Manager
  2. Expand the Display adapters section
  3. Your GPU name appears listed there — for example, NVIDIA GeForce RTX 3060 or AMD Radeon RX 6700 XT

This is the fastest method and works on every version of Windows from 7 onward.

Method 2: DirectX Diagnostic Tool (dxdiag)

  1. Press Windows + R, type dxdiag, and hit Enter
  2. Click the Display tab
  3. Under "Device," you'll see the card Name, manufacturer, and the amount of dedicated video memory

DxDiag is particularly useful because it also shows driver version and date in the same window.

Method 3: Task Manager

  1. Press Ctrl + Shift + Esc to open Task Manager
  2. Click the Performance tab
  3. Select GPU from the left panel

This view shows your GPU name plus real-time usage stats — helpful if you want to see how hard your card is working while running software.

Method 4: Settings App (Windows 10/11)

  1. Go to Settings → System → Display
  2. Scroll down and click Advanced display settings
  3. Select your display, then click Display adapter properties

This route is slower but useful if you're already navigating display settings.

How to Check Your Video Card on macOS 🖥️

  1. Click the Apple menu in the top-left corner
  2. Select About This Mac
  3. Look for the Graphics line in the overview

For more detail, click System Report, then navigate to Graphics/Displays in the Hardware section. This shows the full GPU model, VRAM, and which display it's connected to.

On Macs with Apple Silicon (M1, M2, M3 chips), the GPU is integrated directly into the chip rather than being a separate card — so you'll see something like Apple M2 listed rather than a discrete GPU brand.

How to Check on Linux

Open a terminal and run:

lspci | grep -i vga 

Or for more detail:

lspci | grep -E "VGA|3D|Display" 

If you have NVIDIA drivers installed, nvidia-smi gives you the card name, driver version, and VRAM in one clean output. AMD users can check via glxinfo | grep "OpenGL renderer" if Mesa drivers are in use.

What You'll See — and What It Means

What You FindWhat It Tells You
NVIDIA GeForce seriesConsumer gaming/prosumer GPU from NVIDIA
AMD Radeon RX seriesConsumer gaming GPU from AMD
Intel UHD / Iris Xe GraphicsIntegrated GPU built into Intel CPU
AMD Radeon Graphics (no RX)Integrated GPU in AMD Ryzen (APU)
NVIDIA Quadro / RTX A-seriesProfessional workstation GPU
Multiple entries listedSystem has both integrated and discrete GPUs

Seeing two GPUs listed is common on laptops — one integrated GPU handles light tasks to save battery, and a discrete GPU kicks in for demanding work. This is called switchable graphics or hybrid graphics (NVIDIA calls it Optimus; AMD calls it SmartShift or Hybrid Graphics).

The Details That Actually Matter 🔍

The model name is a start, but a few additional specs determine what your card can actually do:

  • VRAM (Video RAM): Dedicated memory on the GPU itself. More VRAM handles higher resolutions and more complex textures. Common amounts range from 4GB on entry-level cards to 16GB or more on high-end models.
  • Driver version: Outdated drivers cause performance issues and compatibility problems. NVIDIA, AMD, and Intel all provide utilities to check and update drivers automatically.
  • Architecture generation: A card's generation (not just model number) determines which features it supports — things like ray tracing, hardware-accelerated video encoding, and AI upscaling. The model name usually hints at the generation.

When the Information Doesn't Match What You Expected

Sometimes the GPU listed in software doesn't match what's physically installed — this can happen after driver corruption, when integrated graphics override a discrete card in settings, or in systems with virtualization layers. If Device Manager shows something unexpected, cross-reference with your system's original purchase specs or physically check the card if you're comfortable opening the case (desktops only).

The specific methods that work best — and what the results actually mean for your situation — depend on your operating system, whether you're on a desktop or laptop, and what you're trying to do with that information once you have it.