Skip to main content
GameDev.net gamedev.net
🔒 Locked

When to normalize vectors in a shader?

Started by Daniel Wilson Aug 2, 2012 at 12:43 PM 5 replies 3.1k views
Original Post
Daniel Wilson
Daniel Wilson
Hi, I am currently working on a shader and the result is not quite right. One question that bugs me I cannot seem to find the answer to is why and when exactly we normalize vectors in a shader. I understand that it seems to only be important for direction vectors such as the light, but is it important to do so in certain spaces with other vectors aswell? I took a naive approach at first and normalized all the time. I am not so much concerned with efficiency, just why and when it is okay or not okay to normalize a vector.

For example, the shader I am writing at them moment requires the vector from the view position to the vertex position in world space. Some shaders I see normalize this when it is in the fragment shader, but does that not destroy the value of the vector for further calculations?
Hodgman
Hodgman
When representing a direction, it's often stored as a normalized vector (i.e. a point on the unit-sphere).
You normalize vectors when they represent directions, but aren't already normalized (such as when several normals have been interpolated).
Normalizing a vector that represents something else (like a position) doesn't make sense (unless you're trying to calculate the direction from the origin to that position).
21st Century Moose
21st Century Moose
The basic problem is that normalization involves a square root, and a square root does not plot as a straight line - it's a curve. Linear interpolation is not going to preserve that.
Direct3D has need of instancing, but we do not. We have plenty of glVertexAttrib calls. 
CryZe
CryZe

The basic problem is that normalization involves a square root, and a square root does not plot as a straight line - it's a curve. Linear interpolation is not going to preserve that.

It doesn't really have anything to do with square root being plotted as a curve. It has to do with the fact that you can use the Pythagorean theorem, which involves a square root, to determine the length of the vector. And by dividing the vector through its length, you get a vector with the length 1 -> a unit vector.
japro
japro
There isn't really a general rule when to normalize or not... You use normalized vectors when you need a normalized vector. So face normals or light directions often have to be normalized for the dot products/reflections you do during lighting calculation to make sense. On the other hand when you want to raycast something, normalization of the ray direction is often not required. There isn't really a way around understanding the math behind the operations you do.
Daniel Wilson
Daniel Wilson

There isn't really a general rule when to normalize or not... You use normalized vectors when you need a normalized vector. So face normals or light directions often have to be normalized for the dot products/reflections you do during lighting calculation to make sense. On the other hand when you want to raycast something, normalization of the ray direction is often not required. There isn't really a way around understanding the math behind the operations you do.


Yes I thought so, I just figured maybe there was some rules like "you shouldn't normalize in view space". Thanks for the tips. I shall try and keep any normalizing to a minimum though for now and see how it goes tongue.png

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.