What exactly is DirectX ?

Gooberlx2

Lifer
May 4, 2001
15,381
6
91
It's not a driver, it's an API for developers to use when coding games/applications....usually games. Someone who's done some coding using the API could explain better.
 

Raloth

Member
Jun 12, 2006
65
0
0
It's the layer between the programmer and the video driver. You talk to DirectX, which then talks to the video driver. I'm sure the story is more comlicated but I believe that's the basics.
 

xtknight

Elite Member
Oct 15, 2004
12,974
0
71
It's an industry standard set of tools to help the programmer interface with a reciprocally compliant video card. It encompasses mainly objects and functions. Among the objects it offers are a display device, 3D surfaces, and arrays of vertexes. An example of a function would be one to draw a triangle on the screen. Direct3D (the API) defines what these functions are to receive, and in exactly what arrangement.