Re: [Mesa-dev] Loading Vulkan Driver

2020-08-22 Thread apinheiro
On 21/8/20 7:27, vivek pandya wrote: Thanks Jason for your time to reply. I understand the error but I am not much familiar with entry points generation code. As Jason mentioned, to get a Vulkan driver started, you would need more than just one method. If you want a reference:

Re: [Mesa-dev] Loading Vulkan Driver

2020-08-20 Thread vivek pandya
Thanks Jason for your time to reply. I understand the error but I am not much familiar with entry points generation code. Currently I just make it compile (I just want to develop a broken pipeline quickly that just returns from the entry point) . I will study the code. Is there any document to

Re: [Mesa-dev] Loading Vulkan Driver

2020-08-20 Thread Jason Ekstrand
The error says pretty clearly what went wrong. The loader looked for the `vk_icdGetInstanceProcAddr` symbol and couldn't find it in your so. You need at least the basic Get*ProcAddr symbols or else the loader can't do anything. You'll also need device and instance creation functions and

[Mesa-dev] Loading Vulkan Driver

2020-08-20 Thread vivek pandya
Hello, I have started building mesa Vulkan driver. I have started by copying amd/vulkan driver however I have just kept only one file in build libresoc_pipeline.c I have only one method VkResult libresoc_CreateGraphicsPipelines( VkDevice_device,