• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

What exactly is DirectX ?

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.
 
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.
 
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.
 
Back
Top