Re: [Mesa-dev] [PATCH 2/2] glsl: Fix continue statements in do-while loops.

2014-02-01 Thread Matt Turner
Thanks Paul. Both are Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 2/2] glsl: Fix continue statements in do-while loops.

2014-02-01 Thread Kenneth Graunke
On 01/31/2014 01:12 PM, Paul Berry wrote: > From the GLSL 4.40 spec, section 6.4 (Jumps): > > The continue jump is used only in loops. It skips the remainder of > the body of the inner most loop of which it is inside. For while > and do-while loops, this jump is to the next evaluation

[Mesa-dev] [PATCH 2/2] glsl: Fix continue statements in do-while loops.

2014-01-31 Thread Paul Berry
>From the GLSL 4.40 spec, section 6.4 (Jumps): The continue jump is used only in loops. It skips the remainder of the body of the inner most loop of which it is inside. For while and do-while loops, this jump is to the next evaluation of the loop condition-expression from which the