Re: [Mesa-dev] [PATCH mesa] anv: correctly use vulkan 1.0 by default

2018-11-26 Thread Bas Nieuwenhuizen
Reviewed-by: Bas Nieuwenhuizen On Mon, Nov 26, 2018 at 5:14 AM Lionel Landwerlin wrote: > > On 23/11/2018 19:47, Eric Engestrom wrote: > > Per chapter 3.2 "Instances": > >> Providing a NULL VkInstanceCreateInfo::pApplicationInfo or providing > >> an apiVersion of 0 is equivalent to providing an

Re: [Mesa-dev] [PATCH mesa] anv: correctly use vulkan 1.0 by default

2018-11-25 Thread Lionel Landwerlin
On 23/11/2018 19:47, Eric Engestrom wrote: Per chapter 3.2 "Instances": Providing a NULL VkInstanceCreateInfo::pApplicationInfo or providing an apiVersion of 0 is equivalent to providing an apiVersion of VK_MAKE_VERSION(1,0,0). Reported-by: Niklas Haas Fixes: 8c048af5890d43578ca4 "anv: Copy

[Mesa-dev] [PATCH mesa] anv: correctly use vulkan 1.0 by default

2018-11-23 Thread Eric Engestrom
Per chapter 3.2 "Instances": > Providing a NULL VkInstanceCreateInfo::pApplicationInfo or providing > an apiVersion of 0 is equivalent to providing an apiVersion of > VK_MAKE_VERSION(1,0,0). Reported-by: Niklas Haas Fixes: 8c048af5890d43578ca4 "anv: Copy the appliation info into the instance"