microsoft / graphics-driver-samples

This repository contains graphics driver samples used to demonstrate how to write graphics driver for the windows platform.
Other
381 stars 134 forks source link

Constant buffer remapping #16

Closed bhouse-microsoft closed 8 years ago

bhouse-microsoft commented 8 years ago

The constant buffer must be laid out to conform to how the constants will be read by the shader(s).

The work to provide the layout by the shaders has been done. The driver now must consume the shader layout and compose the constant buffer placing the composed buffer inline with the command buffer for consumption by the shader at execution.

indygit commented 8 years ago

Finished. UMD now utilizes remapping info from our shader compiler.