Re: [Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-04 Thread Jason Ekstrand
On Fri, Nov 4, 2016 at 9:55 AM, Strasser, Kevin wrote: > On Thursday, 2016-11-03 20:51:59 -0700, Jason Ekstrand wrote: > > From: Kevin Strasser > > > > In order to support FIFO mode without blocking the application on calls > > to vkQueuePresentKHR it is necessary to enqueue the request and defe

Re: [Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-04 Thread Jason Ekstrand
On Fri, Nov 4, 2016 at 8:58 AM, Eric Engestrom wrote: > On Thursday, 2016-11-03 20:51:59 -0700, Jason Ekstrand wrote: > > From: Kevin Strasser > > > > In order to support FIFO mode without blocking the application on calls > > to vkQueuePresentKHR it is necessary to enqueue the request and defer

Re: [Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-04 Thread Strasser, Kevin
On Thursday, 2016-11-03 20:51:59 -0700, Jason Ekstrand wrote: > From: Kevin Strasser > > In order to support FIFO mode without blocking the application on calls > to vkQueuePresentKHR it is necessary to enqueue the request and defer > calling the server until the next vblank period. The xcb presen

Re: [Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-04 Thread Eric Engestrom
On Thursday, 2016-11-03 20:51:59 -0700, Jason Ekstrand wrote: > From: Kevin Strasser > > In order to support FIFO mode without blocking the application on calls > to vkQueuePresentKHR it is necessary to enqueue the request and defer > calling the server until the next vblank period. The xcb prese

Re: [Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-04 Thread Edward O'Callaghan
This series is, Acked-by: Edward O'Callaghan On 11/04/2016 02:51 PM, Jason Ekstrand wrote: > From: Kevin Strasser > > In order to support FIFO mode without blocking the application on calls > to vkQueuePresentKHR it is necessary to enqueue the request and defer > calling the server until the ne

[Mesa-dev] [PATCH 1/2] vulkan/wsi: Add a thread-safe queue implementation

2016-11-03 Thread Jason Ekstrand
From: Kevin Strasser In order to support FIFO mode without blocking the application on calls to vkQueuePresentKHR it is necessary to enqueue the request and defer calling the server until the next vblank period. The xcb present api doesn't offer a way to register a callback, so we will have to sp