tgsi: Enable returns from within loops

Fixes the following piglit test (for softpipe):
/spec/glsl-1.10/execution/fs-loop-return

Signed-off-by: Lars Hamre <chemecse@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Lars Hamre 2016-09-13 13:08:00 -06:00 committed by Brian Paul
parent 8a6391477e
commit ddd6116e32
1 changed files with 4 additions and 0 deletions

View File

@ -5148,6 +5148,10 @@ exec_instruction(
/* returning from main() */
mach->CondStackTop = 0;
mach->LoopStackTop = 0;
mach->ContStackTop = 0;
mach->LoopLabelStackTop = 0;
mach->SwitchStackTop = 0;
mach->BreakStackTop = 0;
*pc = -1;
return FALSE;
}