| > What other APIs would that be which offer this functionality? Game console APIs. > In D3D this used to be offloaded into a separate D3DX API, but AFAIK this is no longer supported in Windows8 DirectX is now integrated into the Windows SDK and makes use of new APIs: Math is provided via DirectXMath. Shaders can still be combined via Effects. Interactions with the windowing system are done via DXGI. Image loading is done via Windows Imaging Component. > For OpenGL there's plenty of libraries to choose from, for instance: Yes, I had to go library hunting already a few times. It gets tiring trying to see what are the current ones for people like myself that only occasionally do graphics stuff. For example, a few years ago DevIL was the library to go for image loading. |