Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-16 Thread Chia-I Wu
On Sun, Aug 15, 2010 at 6:46 AM, keith whitwell wrote: > On Fri, Aug 13, 2010 at 5:25 PM, Chia-I Wu wrote: >> On Fri, Aug 13, 2010 at 11:35 PM, Keith Whitwell wrote: >>> On Fri, 2010-08-13 at 08:09 -0700, Chia-I Wu wrote: On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: > On Fr

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-14 Thread keith whitwell
On Fri, Aug 13, 2010 at 5:25 PM, Chia-I Wu wrote: > On Fri, Aug 13, 2010 at 11:35 PM, Keith Whitwell wrote: >> On Fri, 2010-08-13 at 08:09 -0700, Chia-I Wu wrote: >>> On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: >>> > On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: >>> >> On Fri,

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Chia-I Wu
On Fri, Aug 13, 2010 at 11:35 PM, Keith Whitwell wrote: > On Fri, 2010-08-13 at 08:09 -0700, Chia-I Wu wrote: >> On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: >> > On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: >> >> On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell >> >> wrote: >

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Keith Whitwell
On Fri, 2010-08-13 at 08:09 -0700, Chia-I Wu wrote: > On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: > > On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: > >> On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell wrote: > >> > On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: > >> >> Hi,

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Chia-I Wu
On Fri, Aug 13, 2010 at 11:09 PM, Chia-I Wu wrote: > On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: >> On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: >>> On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell wrote: >>> > On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: >>> >> Hi, >>>

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Chia-I Wu
On Fri, Aug 13, 2010 at 10:51 PM, Keith Whitwell wrote: > On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: >> On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell wrote: >> > On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: >> >> Hi, >> >> >> >> There are two primitive transformations in galliu

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Keith Whitwell
On Fri, 2010-08-13 at 07:46 -0700, Chia-I Wu wrote: > On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell wrote: > > On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: > >> Hi, > >> > >> There are two primitive transformations in gallium draw module. In > >> varray, primitives are "split"ted. When

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Chia-I Wu
On Fri, Aug 13, 2010 at 10:14 PM, Keith Whitwell wrote: > On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: >> Hi, >> >> There are two primitive transformations in gallium draw module.  In >> varray, primitives are "split"ted.  When a primitive has more vertices >> than the middle end can handle

Re: [Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Keith Whitwell
On Fri, 2010-08-13 at 07:04 -0700, Chia-I Wu wrote: > Hi, > > There are two primitive transformations in gallium draw module. In > varray, primitives are "split"ted. When a primitive has more vertices > than the middle end can handle, varray splits the primitive and calls > the middle end multip

[Mesa-dev] draw: Replace varray and vcache by vsplit

2010-08-13 Thread Chia-I Wu
Hi, There are two primitive transformations in gallium draw module. In varray, primitives are "split"ted. When a primitive has more vertices than the middle end can handle, varray splits the primitive and calls the middle end multiple times. In vcache, primitives are "decompose"d. More advance