diff options
author | Ian Romanick <[email protected]> | 2010-09-01 10:12:55 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-01 10:25:11 -0700 |
commit | a4262874f84e25412cb9bc53b3f1771e4017e27c (patch) | |
tree | f9141d926605625d1f89a655f78134ab0961ccc2 /src/glsl | |
parent | 66e4cb1cd5a55402606a09417349d2be8b009e89 (diff) |
glsl2: Allow ir_constant::zero to create boolean constants
Diffstat (limited to 'src/glsl')
-rw-r--r-- | src/glsl/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |