Re: [Piglit] [PATCH 3/3] tests/all.py: Make MSAA_SAMPLE_COUNTS a list instead of a tuple

2015-12-03 Thread Ilia Mirkin
On Thu, Dec 3, 2015 at 2:31 PM, Dylan Baker wrote: > On Thu, Dec 03, 2015 at 12:00:11AM -0500, Ilia Mirkin wrote: >> On Wed, Dec 2, 2015 at 9:04 PM, Dylan Baker wrote: >> > On Wed, Dec 02, 2015 at 06:13:48PM -0500, Ilia Mirkin wrote: >> >> On Wed, Dec 2, 2015 at 5:36 PM, wrote: >> >> > From: Dy

Re: [Piglit] [PATCH 3/3] tests/all.py: Make MSAA_SAMPLE_COUNTS a list instead of a tuple

2015-12-03 Thread Dylan Baker
On Thu, Dec 03, 2015 at 12:00:11AM -0500, Ilia Mirkin wrote: > On Wed, Dec 2, 2015 at 9:04 PM, Dylan Baker wrote: > > On Wed, Dec 02, 2015 at 06:13:48PM -0500, Ilia Mirkin wrote: > >> On Wed, Dec 2, 2015 at 5:36 PM, wrote: > >> > From: Dylan Baker > >> > > >> > The problem with using MSAA_SAMPL

Re: [Piglit] [PATCH 3/3] tests/all.py: Make MSAA_SAMPLE_COUNTS a list instead of a tuple

2015-12-02 Thread Ilia Mirkin
On Wed, Dec 2, 2015 at 9:04 PM, Dylan Baker wrote: > On Wed, Dec 02, 2015 at 06:13:48PM -0500, Ilia Mirkin wrote: >> On Wed, Dec 2, 2015 at 5:36 PM, wrote: >> > From: Dylan Baker >> > >> > The problem with using MSAA_SAMPLE_COUNTS as a tuple is that it isn't a >> > tuple. It's a sequence of lik

Re: [Piglit] [PATCH 3/3] tests/all.py: Make MSAA_SAMPLE_COUNTS a list instead of a tuple

2015-12-02 Thread Ilia Mirkin
On Wed, Dec 2, 2015 at 5:36 PM, wrote: > From: Dylan Baker > > The problem with using MSAA_SAMPLE_COUNTS as a tuple is that it isn't a > tuple. It's a sequence of like values, and is combined with other > sequences of values, this is what a list is for. Huh? List = mutable, tuple = immutable. T

[Piglit] [PATCH 3/3] tests/all.py: Make MSAA_SAMPLE_COUNTS a list instead of a tuple

2015-12-02 Thread baker . dylan . c
From: Dylan Baker The problem with using MSAA_SAMPLE_COUNTS as a tuple is that it isn't a tuple. It's a sequence of like values, and is combined with other sequences of values, this is what a list is for. Signed-off-by: Dylan Baker --- tests/all.py | 12 ++-- 1 file changed, 6 insertio