Re: [Mesa-dev] [PATCH v2 1/5] anv: implementation of VK_EXT_debug_report extension

2017-09-07 Thread Jason Ekstrand
On Thu, Sep 7, 2017 at 9:46 AM, Jason Ekstrand wrote: > On Mon, Aug 28, 2017 at 10:44 PM, Tapani Pälli > wrote: > >> Patch adds required functionality for extension to manage a list of >> application provided callbacks and handle debug reporting from driver >> and application side. >> >> v2: rem

Re: [Mesa-dev] [PATCH v2 1/5] anv: implementation of VK_EXT_debug_report extension

2017-09-07 Thread Jason Ekstrand
On Mon, Aug 28, 2017 at 10:44 PM, Tapani Pälli wrote: > Patch adds required functionality for extension to manage a list of > application provided callbacks and handle debug reporting from driver > and application side. > > v2: remove useless helper anv_debug_report_call > add locking around

Re: [Mesa-dev] [PATCH v2 1/5] anv: implementation of VK_EXT_debug_report extension

2017-08-31 Thread Tapani Pälli
On 08/29/2017 08:44 AM, Tapani Pälli wrote: Patch adds required functionality for extension to manage a list of application provided callbacks and handle debug reporting from driver and application side. v2: remove useless helper anv_debug_report_call add locking around callbacks list

[Mesa-dev] [PATCH v2 1/5] anv: implementation of VK_EXT_debug_report extension

2017-08-28 Thread Tapani Pälli
Patch adds required functionality for extension to manage a list of application provided callbacks and handle debug reporting from driver and application side. v2: remove useless helper anv_debug_report_call add locking around callbacks list use vk_alloc2, vk_free2 helpers refactor Cre