Add support for bool to ir_equal and ir_nequal constant handling
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 7 Apr 2010 23:48:42 +0000 (16:48 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 7 Apr 2010 23:49:25 +0000 (16:49 -0700)
ir_constant_expression.cpp

index 7e1bb03..e3a0d9e 100644 (file)
@@ -355,6 +355,9 @@ ir_constant_visitor::visit(ir_expression *ir)
            case GLSL_TYPE_FLOAT:
               b[0] = b[0] && op[0]->value.f[c] == op[1]->value.f[c];
               break;
+           case GLSL_TYPE_BOOL:
+              b[0] = b[0] && op[0]->value.b[c] == op[1]->value.b[c];
+              break;
            default:
               assert(0);
            }
@@ -376,6 +379,9 @@ ir_constant_visitor::visit(ir_expression *ir)
            case GLSL_TYPE_FLOAT:
               b[0] = b[0] || op[0]->value.f[c] != op[1]->value.f[c];
               break;
+           case GLSL_TYPE_BOOL:
+              b[0] = b[0] || op[0]->value.b[c] != op[1]->value.b[c];
+              break;
            default:
               assert(0);
            }