Re: [Mesa-dev] [PATCH 05/21] meta: Fix saving the program pipeline state

2014-05-01 Thread Ian Romanick
On 04/30/2014 06:59 PM, Chia-I Wu wrote: > On Thu, May 1, 2014 at 12:11 AM, Ian Romanick wrote: >> On 04/29/2014 08:43 PM, Chia-I Wu wrote: >>> On Wed, Apr 30, 2014 at 8:52 AM, Ian Romanick wrote: From: Ian Romanick This code was broken in some odd ways before. Too much state was

Re: [Mesa-dev] [PATCH 05/21] meta: Fix saving the program pipeline state

2014-04-30 Thread Chia-I Wu
On Thu, May 1, 2014 at 12:11 AM, Ian Romanick wrote: > On 04/29/2014 08:43 PM, Chia-I Wu wrote: >> On Wed, Apr 30, 2014 at 8:52 AM, Ian Romanick wrote: >>> From: Ian Romanick >>> >>> This code was broken in some odd ways before. Too much state was being >>> saved, it was being restored in the w

Re: [Mesa-dev] [PATCH 05/21] meta: Fix saving the program pipeline state

2014-04-30 Thread Ian Romanick
On 04/29/2014 08:43 PM, Chia-I Wu wrote: > On Wed, Apr 30, 2014 at 8:52 AM, Ian Romanick wrote: >> From: Ian Romanick >> >> This code was broken in some odd ways before. Too much state was being >> saved, it was being restored in the wrong order, and in the wrong way. >> The biggest problem was

Re: [Mesa-dev] [PATCH 05/21] meta: Fix saving the program pipeline state

2014-04-29 Thread Chia-I Wu
On Wed, Apr 30, 2014 at 8:52 AM, Ian Romanick wrote: > From: Ian Romanick > > This code was broken in some odd ways before. Too much state was being > saved, it was being restored in the wrong order, and in the wrong way. > The biggest problem was that the pipeline object was restored before > r

[Mesa-dev] [PATCH 05/21] meta: Fix saving the program pipeline state

2014-04-29 Thread Ian Romanick
From: Ian Romanick This code was broken in some odd ways before. Too much state was being saved, it was being restored in the wrong order, and in the wrong way. The biggest problem was that the pipeline object was restored before restoring the programs attached to the default pipeline. Fixes a