From: Brian Date: Sat, 29 Sep 2007 03:04:56 +0000 (-0600) Subject: temporary hack to test nested conditionals X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9405ec62512ca7195905644d9c7f271ae01662c5;p=mesa.git temporary hack to test nested conditionals --- diff --git a/progs/demos/arbfslight.c b/progs/demos/arbfslight.c index 69575f06236..39c9226b3d9 100644 --- a/progs/demos/arbfslight.c +++ b/progs/demos/arbfslight.c @@ -208,7 +208,21 @@ static void Init (void) " // Compute dot product of light direction and normal vector\n" " float dotProd = max (dot (lightPos, normalize (normal)), 0.0);\n" " // Compute diffuse and specular contributions\n" +#if 0 " gl_FragColor = diffuse * dotProd + specular * pow (dotProd, 20.0);\n" +#else + " if (normal.y > 0.0) { \n" + " gl_FragColor = diffuse * dotProd + specular * pow (dotProd, 20.0);\n" + " } \n" + " else { \n" + " if (normal.x < 0.0) { \n" + " gl_FragColor = vec4(1, 0, 0, 0); \n" + " } \n" + " else { \n" + " gl_FragColor = vec4(1, 1, 0, 0); \n" + " } \n" + " } \n" +#endif "}\n" ; static const char *vertShaderText =