Parallax mapping

Started by April 15, 2006 07:18 AM
14 comments, last by whathappened 14 years ago
whathappened
Author
122
April 15, 2006 07:18 AM
I dont really know if this topic fits into the DirectX forum but I hope so since it's about shaders. I just wonder, what is parallax mapping? I know how to make bump mapping and some displacement mapping (to actual change the geometry) but what is parallax mapping? Anyone who has a good link where it's explained cause I couldnt find one
crazyishone
April 15, 2006 07:23 AM
Here

That gives a brief description of what parallax mapping is.
sirob
1,181
April 15, 2006 07:26 AM
Also, in case you are interested in an actual implementation, a Parallax Mapping sample has been recently added to the SDK samples. Grab the April '06 SDK to give it a go.

Hope this helps. :)
Sirob Yes.» - status: Work-O-Rama.
whathappened
Author
122
April 15, 2006 07:29 AM
thank you. Is there any tutorials available somewhere? I've only seen short descriptions when trying to google :(
ET3D
810
April 15, 2006 06:21 PM
Don't know about a tutorial, but if you google "parallax mapping site:ati.com" you should find a couple of docs. ATI's March SDK contains an article about this.
CadeF
April 15, 2006 09:39 PM

Its quite simple, actually. It only requires a heightmap texture for the shader pass.

float3 vEye = -TBNViewDir;float fBumpScale = 0.05f;float2 vCoord = texCoord;	float fDepth = tex2D(sHeightMapSampler, vCoord).w;	float2 vHalfOffset = normalize(vEye).xy * (fDepth) * fBumpScale;	fDepth = (fDepth + tex2D(sHeightMapSampler, vCoord + vHalfOffset).x) * 0.5;	vHalfOffset = normalize(vEye).xy * (fDepth) * fBumpScale;	fDepth = (fDepth + tex2D(sHeightMapSampler, vCoord + vHalfOffset).x) * 0.5;	vHalfOffset = normalize(vEye).xy * (fDepth) * fBumpScale;		return vCoord + vHalfOffset;

Then, sample the diffuse texture and the normal texture using the returned coordinates.

Basically, it samples the height map at the texture coordinate, and offsets the texture coordinates in the direction away from the viewer. I do 3 iterations to get good results. If you only do one, the effect is negligible.

In these 2 screenshots, I have doubled the parallax amount to make the difference clearly visible.


No parallax mapping


Parallax mapping
jamesw
April 16, 2006 01:35 AM
Ah cool, I didn't think about multiple samples/calculations. Does that increase accuracy or create a larger offset?
Armadon
1,091
April 16, 2006 04:20 AM
Cadef, in the second screenshot if seems like your parallax mapping goes off to the left. Maybe a projection problem?
CadeF
April 16, 2006 06:39 AM
Multiple samples increase accuracy. If you take 1 sample, it will look wrong.

It is supposed to go off to the left, that is parallax mapping. It might seem a bit wrong, because I exaggerated the parallax scale to make the effect prominent.
whathappened
Author
122
April 16, 2006 07:25 AM
So parallax mapping is just about the texture coordinates? Would be great with a little more detailed explanation :)

and does anyone know any links where I can find a simple texture and a nice parallax map to work with :)

[Edited by - whathappened on April 16, 2006 7:25:58 AM]
Share:

This topic is closed to new replies.