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

2016-11-09 Thread Strasser, Kevin
On Tue, Nov 8, 2016 at 5:00 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 next vblank period. The xcb present api >

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

2016-11-08 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