bodino
bodino

Reputation: 15

How Vulkan application find the address of the function in driver

enter image description here

enter image description here

enter image description here

I am studying Vulkan driver code. I want to know how the application call the driver func because the func name is different.

Upvotes: 0

Views: 101

Answers (1)

krOoze
krOoze

Reputation: 13306

Then look at Vulkan Loader trampoline. Which in turn will hit the driver per LoaderDriverInterface.md documentation.

Upvotes: 3

Related Questions