summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-09-01 10:12:55 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-09-01 10:25:11 -0700
commita4262874f84e25412cb9bc53b3f1771e4017e27c (patch)
treef9141d926605625d1f89a655f78134ab0961ccc2
parent66e4cb1cd5a55402606a09417349d2be8b009e89 (diff)
glsl2: Allow ir_constant::zero to create boolean constants
-rw-r--r--src/glsl/ir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir.cpp b/src/glsl/ir.cpp
index 992853c046..5bd023f499 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;