Dunno if this has already been posted, but Microsoft is pulling another DX10. Sorry, Windows 7 users, potential PS4 owners, and, uh, Wii U owners.
Five key features of DX11.2:
- Hardware overlay support (Similar to Durangos display panes, allows the developer to render the 3d graphics of the app at lower than native resolution, while keeping 2d ui at native res composing the final frame at a native resolution). Developers can also target a framerate and let the gpu dynamically scales the 3d graphics to try to meet that criteria (basically dynamic resolution changing is now fully supported by the api)
- HSL shader linking. W8.1 store apps can compile shaders in runtime, so the behavior of the shaders can be dynamic. However compiling is slow, so this feature allows you to pre-compile shaders at build time and link them at runtime, this way you can create new dynamic shaders without the performance hit. Dynamics shaders could be used for instance for a game to test the performance of the device its going to run and modify to a simpler or a more complex version of the shader to maintain the best visual quality while maintaining the target framerate. Its also useful for building shader library dlls that can be shared among different projects and each app decides how to build their shaders from this library.
- Mappeable gpu buffers. This is great for compute scenarios with collaboration of the cpu and gpu. They provide api support for the cpu directly access the gpu memory without needing to copy the buffer back and forth. For 11.2 its going to be onlye for compute so its only buffers, not graphical objects.
- Low latency present API. Basically api support for the system to tell the app when its the best time to start rendering and showing the content on screen, to allow the shortest latency possible. By using this api they were able to reduce latency from 3 frames (at 60fps) to less than 1.
- Tiled Resources which is api support for hardware accelerated virtual texturing. Its basically hardware support for mega texturing.
Log in to comment