Git Product home page Git Product logo

Comments (4)

lch32111 avatar lch32111 commented on July 17, 2024 1

yeah I know what you mean. I can load the dll by myself LoadLibraryA or dlopen and then pass my own function pointer to the volkInitializeCustom where I call the vkGetInstanceProcAddr for the dll.

It's not a serious thing, but I am just simply asking the question in the perspective of the API design. If a user calls the volkInitialize, then there is no way to unload the dll except closing the application which calls the volkInitialize. As I mentioned simply before, I can add the function volkFinailize that unloads the dll by saving the module variable in the volkInitialize to a static variable. (Actually I did it on my code base)

from volk.

zeux avatar zeux commented on July 17, 2024 1

It just never came up before. I'll look into adding a finalize function.

from volk.

ilyas-taouaou avatar ilyas-taouaou commented on July 17, 2024

there is a workaround if you're using SDL, SFML or GLFW which is to use volkInitializeCustom instead passing it the function vkGetInstanceProcAddr from one of those librairies on any library that would allow you load vulkan yourself
Tho I personally never use volkInitialize, unless if am making a compute only application where I don't have SDL or similar

from volk.

ilyas-taouaou avatar ilyas-taouaou commented on July 17, 2024

On SDL, that would be:

    SDL_Vulkan_LoadLibrary(NULL);
    volkInitializeCustom((PFN_vkGetInstanceProcAddr) SDL_Vulkan_GetVkGetInstanceProcAddr());
    // Volk is initialized...
    SDL_Vulkan_UnloadLibrary();

from volk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.