How did APIs and device drivers work together? Specifically in the case of GPUs

222 viewsOtherTechnology

How did APIs and device drivers work together? Specifically in the case of GPUs

In: Technology

2 Answers

Anonymous 0 Comments

Think of an API as a middle man, this middle man has to talk to two parties that speak in different languages, the games (as an example of a use-case as gpus have many) and the drivers.

So the middleman talks the language the games understands and talks in the language of drivers understand.

Why wouldn’t games just talk to drivers? It’s been done in the past but the problem is that this layer or middle man is just passed into the game, and it becomes very hard for developers to maintain, because the would need to hard pick and support a myriad of devices, without even considering all the platforms out there.

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