Re: [Mesa-dev] [PATCH] gallium/u_queue: add optional cleanup callback

2016-07-16 Thread Nicolai Hähnle
Reviewed-by: Nicolai Hähnle On 14.07.2016 21:08, Rob Clark wrote: Adds a second optional cleanup callback, called after the fence is signaled. This is needed if, for example, the queue has the last reference to the object that embeds the util_queue_fence. In this

Re: [Mesa-dev] [PATCH] gallium/u_queue: add optional cleanup callback

2016-07-14 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Thu, Jul 14, 2016 at 9:08 PM, Rob Clark wrote: > Adds a second optional cleanup callback, called after the fence is > signaled. This is needed if, for example, the queue has the last > reference to the object that

[Mesa-dev] [PATCH] gallium/u_queue: add optional cleanup callback

2016-07-14 Thread Rob Clark
Adds a second optional cleanup callback, called after the fence is signaled. This is needed if, for example, the queue has the last reference to the object that embeds the util_queue_fence. In this case we cannot drop the ref in the main callback, since that would result in the fence being

Re: [Mesa-dev] [PATCH] gallium/u_queue: add optional cleanup callback

2016-07-13 Thread Marek Olšák
On Wed, Jul 13, 2016 at 6:28 PM, Rob Clark wrote: > Adds a second optional cleanup callback, called after the fence is > signaled. This is needed if, for example, the queue has the last > reference to the object that embeds the util_queue_fence. In this > case we cannot

[Mesa-dev] [PATCH] gallium/u_queue: add optional cleanup callback

2016-07-13 Thread Rob Clark
Adds a second optional cleanup callback, called after the fence is signaled. This is needed if, for example, the queue has the last reference to the object that embeds the util_queue_fence. In this case we cannot drop the ref in the main callback, since that would result in the fence being