s/DP3/DP3_SAT/ to prevent negative values
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Dec 2004 00:54:17 +0000 (00:54 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Dec 2004 00:54:17 +0000 (00:54 +0000)
progs/demos/arbfplight.c
progs/demos/fplight.c

index 50a1b7e..d5508a6 100644 (file)
@@ -217,7 +217,7 @@ static void Init( void )
       "MUL normal, fragment.texcoord[0], len.y; \n"
 
       "# Compute dot product of light direction and normal vector\n"
-      "DP3 dotProd, lightDir, normal; \n"
+      "DP3_SAT dotProd, lightDir, normal;             # limited to [0,1]\n"
 
       "MUL diffuseColor, Diffuse, dotProd;            # diffuse attenuation\n"
 
index 4f8b42a..6eb77c6 100644 (file)
@@ -180,7 +180,7 @@ static void Init( void )
       "MUL R1, f[TEX0], R1.y;\n"
 
       "# Compute dot product of light direction and normal vector\n"
-      "DP3 R2, R0, R1;"
+      "DP3_SAT R2, R0, R1;"
 
       "MUL R3, Diffuse, R2;    # diffuse attenuation\n"