glsl: Short-circuit lower_if_to_cond_assign when MaxIfDepth is UINT_MAX.

Setting MaxIfDepth to UINT_MAX effectively means "don't lower anything."

Explicitly checking for this common case allows us to avoid walking the
IR, computing nesting levels, and so on.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Bryan Cain <bryancain3@gmail.com>
This commit is contained in:
Kenneth Graunke 2011-10-18 15:04:37 -07:00
parent 01f9fdc4ac
commit 1595c79d9c
1 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,9 @@ public:
bool
lower_if_to_cond_assign(exec_list *instructions, unsigned max_depth)
{
if (max_depth == UINT_MAX)
return false;
ir_if_to_cond_assign_visitor v(max_depth);
visit_list_elements(&v, instructions);