Re: [Mesa-dev] [PATCH] glx: allow 0 for glXSwapIntervalSGI

2017-03-08 Thread Grazvydas Ignotas
On Wed, Mar 8, 2017 at 4:37 AM, Ian Romanick wrote: > On 03/07/2017 05:09 PM, Grazvydas Ignotas wrote: >> Makes vsync option work in The Talos Principle. > > NAK. The GLX_SGI_swap_control spec says: > > glXSwapIntervalSGI returns GLX_BAD_VALUE if parameter is > less than or equal to zero

Re: [Mesa-dev] [PATCH] glx: allow 0 for glXSwapIntervalSGI

2017-03-07 Thread Ian Romanick
On 03/07/2017 05:09 PM, Grazvydas Ignotas wrote: > Makes vsync option work in The Talos Principle. NAK. The GLX_SGI_swap_control spec says: glXSwapIntervalSGI returns GLX_BAD_VALUE if parameter is less than or equal to zero. They should use glXSwapIntervalMESA instead. This is one of

[Mesa-dev] [PATCH] glx: allow 0 for glXSwapIntervalSGI

2017-03-07 Thread Grazvydas Ignotas
Makes vsync option work in The Talos Principle. Signed-off-by: Grazvydas Ignotas --- no commit access perhaps this is stable worthy? src/glx/glxcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index 53c9f9c..7be4e73 100644 --- a/sr