You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to add FSR3 as a submodule to my project. I need to get both VK and DX12 builds, but "FidelityFX-SDK/ffx-api" can be added as a subdirectory only once with either VK or DX12 setting. Is there a general approach to get both builds at the same time?
The text was updated successfully, but these errors were encountered:
Hello!
If I understand correctly your needs, you want to be able to embed VK and DX12 backend into your executable.
If so, you will need to load the dll dynamically (LoadLibrary) and retrieve the function with GetProcAddress. You will then use those function pointers to call the API.
Hello lordOznek,
To get both builds I need to have two copies of add_subdirectory(ThirdParty/FidelityFX-SDK/ffx-api), but cmake doesn't allow it. I have to choose between vk and dx12 builds. I need both.
I'm trying to add FSR3 as a submodule to my project. I need to get both VK and DX12 builds, but "FidelityFX-SDK/ffx-api" can be added as a subdirectory only once with either VK or DX12 setting. Is there a general approach to get both builds at the same time?
The text was updated successfully, but these errors were encountered: