From: Brian Date: Thu, 18 Jan 2007 22:23:45 +0000 (-0700) Subject: remove debug code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4e66476a90cca291b562dd48ef55258e1c690f4;p=mesa.git remove debug code --- diff --git a/progs/glsl/CH11-toyball.frag.txt b/progs/glsl/CH11-toyball.frag.txt index cf9129ee1da..90ec1c27fc1 100644 --- a/progs/glsl/CH11-toyball.frag.txt +++ b/progs/glsl/CH11-toyball.frag.txt @@ -45,7 +45,6 @@ void main() distance[2] = dot(p, HalfSpace2); distance[3] = dot(p, HalfSpace3); -#if 1 distance = smoothstep(-FWidth, FWidth, distance); inorout += dot(distance, vec4(1.0)); @@ -73,7 +72,4 @@ void main() surfColor += SpecularColor * intensity; gl_FragColor = surfColor; -#else - gl_FragColor = distance; -#endif }