[Piglit] [PATCH 2/3] tests/all.py: Make MSAA_SAMPLE_COUNTS contain str() instead of int()

2015-12-02 Thread baker . dylan . c
From: Dylan Baker In every case MSAA_SAMPLES_COUNTS are converted to str() anyway, (either explicitly by calling str(), or implicitly by str.format(). This is often done with a pattern like: (str(x) for x in MSAA_SAMPLE_COUNTS). This is just a waste of time when the

Re: [Piglit] [PATCH 2/3] tests/all.py: Make MSAA_SAMPLE_COUNTS contain str() instead of int()

2015-12-02 Thread Vinson Lee
On Wed, Dec 2, 2015 at 2:36 PM, wrote: > From: Dylan Baker > > In every case MSAA_SAMPLES_COUNTS are converted to str() anyway, (either > explicitly by calling str(), or implicitly by str.format(). This is > often done with a pattern like: