projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
323d909
)
ir_constant_expression: Add support for ir_unop_ceil.
author
Kenneth Graunke
<kenneth@whitecape.org>
Fri, 9 Jul 2010 06:22:36 +0000
(23:22 -0700)
committer
Kenneth Graunke
<kenneth@whitecape.org>
Wed, 14 Jul 2010 22:50:28 +0000
(15:50 -0700)
src/glsl/ir_constant_expression.cpp
patch
|
blob
|
history
diff --git
a/src/glsl/ir_constant_expression.cpp
b/src/glsl/ir_constant_expression.cpp
index 09bc5b6bbff0125736767844ef4c3b81972f3abf..19498a3bf953745af605e69ea8f4775ce3342fb2 100644
(file)
--- a/
src/glsl/ir_constant_expression.cpp
+++ b/
src/glsl/ir_constant_expression.cpp
@@
-213,6
+213,13
@@
ir_constant_visitor::visit(ir_expression *ir)
}
break;
+ case ir_unop_ceil:
+ assert(op[0]->type->base_type == GLSL_TYPE_FLOAT);
+ for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
+ data.f[c] = ceilf(op[0]->value.f[c]);
+ }
+ break;
+
case ir_unop_fract:
for (unsigned c = 0; c < ir->operands[0]->type->components(); c++) {
switch (ir->type->base_type) {