From: Eric Anholt Date: Mon, 23 Aug 2010 19:54:55 +0000 (-0700) Subject: glsl: Rebuild builtins for any() change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b75645d8adf88ef237c3f835b6190e8113452b09;p=mesa.git glsl: Rebuild builtins for any() change. --- diff --git a/src/glsl/builtin_function.cpp b/src/glsl/builtin_function.cpp index 517a6ad86d2..5471ba6020f 100644 --- a/src/glsl/builtin_function.cpp +++ b/src/glsl/builtin_function.cpp @@ -143,17 +143,17 @@ static const char *builtin_any = " (signature bool\n" " (parameters\n" " (declare (in) bvec2 arg0))\n" - " ((return (expression bool || (swiz x (var_ref arg0))(swiz y (var_ref arg0))))))\n" + " ((return (expression bool any (var_ref arg0)))))\n" "\n" " (signature bool\n" " (parameters\n" " (declare (in) bvec3 arg0))\n" - " ((return (expression bool || (expression bool || (swiz x (var_ref arg0))(swiz y (var_ref arg0))) (swiz z (var_ref arg0))))))\n" + " ((return (expression bool any (var_ref arg0)))))\n" "\n" " (signature bool\n" " (parameters\n" " (declare (in) bvec4 arg0))\n" - " ((return (expression bool || (expression bool || (expression bool || (swiz x (var_ref arg0))(swiz y (var_ref arg0))) (swiz z (var_ref arg0))) (swiz w (var_ref arg0))))))\n" + " ((return (expression bool any (var_ref arg0)))))\n" "))\n" "" ;