DirectX 12 Water Reflection
As part of my Master's year at university, we were given the opportunity to research and develop an advanced graphics technique of our choosing. Once developed, the implementation details and alternative techniques are to be presented to the rest of the cohort.
This project is still under development and every detail cannot yet be shared. I can, however, detail my plans for the completion of the project.
With water reflections, I aim to render the scene to a reflection and refraction render target first, convert them to shader resources, and then use projective texture mapping to distort and merge the render targets together.
Reflection rendering requires a clipping plane that clips the scene below the water. The camera must be moved below the water surface, at the same distance that it was above it, and have the yaw inverted to look above the water.
Refraction rendering requires a clipping plane that clips the scene above the water. The camera must be moved back to its original position with its original yaw.
These render targets must now be transitioned into a shader resource to perform projective texture mapping onto the water surface.
With this, a DuDv map can be applied with an offset over time, to simulate the effect of water rippling.
Finally, everything will come together by adding a Fresnel effect that will describe the amount of reflectivity of the water as the viewing angle of the camera changes. If the camera is to be looking directly down into the water, the surface should be mostly transparent. However, if the camera is looking across the water, the surrounding scene will be mostly reflected off the surface.
Additional details can be added, by applying a normal map, and softening the edges where the water meets the terrain.
