From: Kenneth Graunke Date: Thu, 22 Jul 2010 04:46:16 +0000 (-0700) Subject: ir_constant_expression: Add support for the "faceforward" builtin. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3d5c2f0adbd72a68d4fe3900b0d3e267510950ef;p=mesa.git ir_constant_expression: Add support for the "faceforward" builtin. --- diff --git a/src/glsl/ir_constant_expression.cpp b/src/glsl/ir_constant_expression.cpp index 580ef1d4fae..c939690129a 100644 --- a/src/glsl/ir_constant_expression.cpp +++ b/src/glsl/ir_constant_expression.cpp @@ -881,7 +881,10 @@ ir_call::constant_expression_value() } else if (strcmp(callee, "exp2") == 0) { expr = new(mem_ctx) ir_expression(ir_unop_exp2, type, op[0], NULL); } else if (strcmp(callee, "faceforward") == 0) { - return NULL; /* FINISHME: implement this */ + if (dot(op[2], op[1]) < 0) + return op[0]; + for (unsigned c = 0; c < op[0]->type->components(); c++) + data.f[c] = -op[0]->value.f[c]; } else if (strcmp(callee, "floor") == 0) { expr = new(mem_ctx) ir_expression(ir_unop_floor, type, op[0], NULL); } else if (strcmp(callee, "fract") == 0) {