Terrain Rendering Demo With Perlin Noise, SSAO and SSDM

Terrain Rendering With Perlin Noise, SSAO and SSDM



Here is a CUDA / Cg / OpenGL demo for NVIDIA cards. It runs at 60 FPS on my GTX 480 (I guess the VSYNC is enabled on this demo).

The demo is an experiment to combine terrain raycasting of perlin noise generated terrain with screen space ambient occlusions (SSAO) and screen space displacement mapping (SSDM). The terrain is generated at the beginning of the demo as a 1024x256x1024 sized perlin noise volume data in CUDA, which is raycasted in the demo using distance functions for acceleration. After the first hit is found, the screen-space normal vector is computed for shading and for the SSDM. The SSDM is not achieved using a stack of textures as this leads to problems in case of overlapping areas for large displacements. Instead, the SSDM is achieved in a post-process using a high-resolution triangle mesh with two triangles per pixel. That is the reason why sometimes articafts near the screen-boundary can be observed.

The ones of you adept in CG may play around with the shader thats included.


[youtube f4bYYWnQbSU]

Download

[via]

One thought on “Terrain Rendering Demo With Perlin Noise, SSAO and SSDM”

Comments are closed.