High Dynamic Range rendering demo | |
This sample created by shows how to perform all the steps necessary for HDR rendering in Managed DirectX. The original discussion and release of the sample can be found » Download this resource |
|
How to skin in HLSL | |
This sample created by Steve Lanuit extends the SimpleAnimation sample in the SDK to demonstrate how to perform mesh skinning in a HLSL shader. This sample was previously published on C# Home, but since it's such a useful sample we've put it up here as well. For more information on skinning, CircleSoft's DirectMesh2 specification provides a good starting point. » Download this resource |
|
Multiple lights in HLSL using deferred lighting | |
Deferred lighting is a technique for performing your lighting in screenspace, by rendering the required attributes such as position, normals and diffuse color to temporary buffers first. Once the scene is completely preprocessed like this, each light is rendered seperately, accumulating the results by using additive blending. This allows you to render a virtually unlimited amount of lights with no overdraw. » Download this resource |
|
Rigid body physics demo | |
This sample demonstrates how to implement general rigid body physics and various contructs such as joints, springs and liquids. The demo is implemented in 2D, but the concepts translate well to 3D environments. » Download this resource |
|