mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
VideoBackends:Vulkan: Allow loading custom drivers on Android
... using libadrenotools
This commit is contained in:
parent
35bb663c2a
commit
23bebc5270
24 changed files with 399 additions and 29 deletions
|
@ -21,6 +21,8 @@ public:
|
|||
// Automatically loads the specified library. Call IsOpen() to check validity before use.
|
||||
DynamicLibrary(const char* filename);
|
||||
|
||||
DynamicLibrary(void* handle);
|
||||
|
||||
// Closes the library.
|
||||
~DynamicLibrary();
|
||||
|
||||
|
@ -30,6 +32,8 @@ public:
|
|||
DynamicLibrary& operator=(const DynamicLibrary&) = delete;
|
||||
DynamicLibrary& operator=(DynamicLibrary&&) = delete;
|
||||
|
||||
DynamicLibrary& operator=(void*);
|
||||
|
||||
// Returns the specified library name with the platform-specific suffix added.
|
||||
static std::string GetUnprefixedFilename(const char* filename);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue