Re: [Mesa-dev] [PATCH] i965: set VIEWPORT_BOUNDS_RANGE value depending of the supported OpenGL version

2016-03-01 Thread Samuel Iglesias Gonsálvez
On Tue, Mar 01, 2016 at 02:34:35AM -0800, Kenneth Graunke wrote: > On Tuesday, March 1, 2016 9:48:16 AM PST Samuel Iglesias Gonsálvez wrote: > > On Mon, Feb 29, 2016 at 04:33:42PM -0800, Kenneth Graunke wrote: > > > On Friday, February 26, 2016 8:37:33 AM PST Samuel Iglesias Gonsálvez > wrote: >

Re: [Mesa-dev] [PATCH] i965: set VIEWPORT_BOUNDS_RANGE value depending of the supported OpenGL version

2016-03-01 Thread Kenneth Graunke
On Tuesday, March 1, 2016 9:48:16 AM PST Samuel Iglesias Gonsálvez wrote: > On Mon, Feb 29, 2016 at 04:33:42PM -0800, Kenneth Graunke wrote: > > On Friday, February 26, 2016 8:37:33 AM PST Samuel Iglesias Gonsálvez wrote: > > > From ARB_viewport_array spec: > > > > > > " * On GL3-capable

Re: [Mesa-dev] [PATCH] i965: set VIEWPORT_BOUNDS_RANGE value depending of the supported OpenGL version

2016-03-01 Thread Samuel Iglesias Gonsálvez
On Mon, Feb 29, 2016 at 04:33:42PM -0800, Kenneth Graunke wrote: > On Friday, February 26, 2016 8:37:33 AM PST Samuel Iglesias Gonsálvez wrote: > > From ARB_viewport_array spec: > > > > " * On GL3-capable hardware the VIEWPORT_BOUNDS_RANGE should be at least > > [-16384, 16383]. > > * On

Re: [Mesa-dev] [PATCH] i965: set VIEWPORT_BOUNDS_RANGE value depending of the supported OpenGL version

2016-02-29 Thread Kenneth Graunke
On Friday, February 26, 2016 8:37:33 AM PST Samuel Iglesias Gonsálvez wrote: > From ARB_viewport_array spec: > > " * On GL3-capable hardware the VIEWPORT_BOUNDS_RANGE should be at least > [-16384, 16383]. > * On GL4-capable hardware the VIEWPORT_BOUNDS_RANGE should be at least >

[Mesa-dev] [PATCH] i965: set VIEWPORT_BOUNDS_RANGE value depending of the supported OpenGL version

2016-02-25 Thread Samuel Iglesias Gonsálvez
From ARB_viewport_array spec: " * On GL3-capable hardware the VIEWPORT_BOUNDS_RANGE should be at least [-16384, 16383]. * On GL4-capable hardware the VIEWPORT_BOUNDS_RANGE should be at least [-32768, 32767]." Signed-off-by: Samuel Iglesias Gonsálvez ---