mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 15:10:12 +01:00
glsl: remove test for loop unrolling when we hit conditional cont/break
This is no longer needed since we added the new _slang_loop_contains_continue_or_break() function/test.
This commit is contained in:
parent
2f1c5c58b3
commit
dd453fa37c
1 changed files with 0 additions and 4 deletions
|
|
@ -3465,8 +3465,6 @@ _slang_gen_if(slang_assemble_ctx * A, const slang_operation *oper)
|
|||
if (is_operation_type(&oper->children[1], SLANG_OPER_BREAK)
|
||||
&& !haveElseClause) {
|
||||
/* Special case: generate a conditional break */
|
||||
if (!A->CurLoop) /* probably trying to unroll */
|
||||
return NULL;
|
||||
ifBody = new_break_if_true(A, cond);
|
||||
return ifBody;
|
||||
}
|
||||
|
|
@ -3475,8 +3473,6 @@ _slang_gen_if(slang_assemble_ctx * A, const slang_operation *oper)
|
|||
&& A->CurLoopOper
|
||||
&& A->CurLoopOper->type != SLANG_OPER_FOR) {
|
||||
/* Special case: generate a conditional continue */
|
||||
if (!A->CurLoop) /* probably trying to unroll */
|
||||
return NULL;
|
||||
ifBody = new_cont_if_true(A, cond);
|
||||
return ifBody;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue