Why do computers need GPUs (integrated or external)? What information is the CPU sending to the GPU that it can’t just send to a display?

1.39K views

Why do computers need GPUs (integrated or external)? What information is the CPU sending to the GPU that it can’t just send to a display?

In: 219

41 Answers

Anonymous 0 Comments

They don’t *need* a GPU. Until the 1990s, computers didn’t have one at all, unless you count a fairly simple device that reads from a chunk of RAM and interprets it as video data a GPU. Early 3D games like Quake were perfectly fine on these systems, and did all the work on the CPU.

What the CPU sends is a lot of textures, and a bunch of triangles, plus information on how to apply the textures to the triangles.

The CPU could do this but the GPU is a lot faster at certain tasks. Drawing triangles being one such task. Twisting the textures around being another.

Early GPUs just did the texturing. That’s the most CPU intensive task.

You are viewing 1 out of 41 answers, click here to view all answers.