From: Ian Romanick Date: Wed, 1 Sep 2010 17:12:55 +0000 (-0700) Subject: glsl2: Allow ir_constant::zero to create boolean constants X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a4262874f84e25412cb9bc53b3f1771e4017e27c;p=mesa.git glsl2: Allow ir_constant::zero to create boolean constants --- diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp index 992853c0466..5bd023f499e 100644 --- a/src/glsl/ir.cpp +++ b/src/glsl/ir.cpp @@ -454,7 +454,7 @@ ir_constant::ir_constant(const struct glsl_type *type, exec_list *value_list) ir_constant * ir_constant::zero(void *mem_ctx, const glsl_type *type) { - assert(type->is_numeric()); + assert(type->is_numeric() || type->is_boolean()); ir_constant *c = new(mem_ctx) ir_constant; c->type = type;