mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 22:38:34 +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
|
@ -24,11 +24,22 @@ DynamicLibrary::DynamicLibrary(const char* filename)
|
|||
Open(filename);
|
||||
}
|
||||
|
||||
DynamicLibrary::DynamicLibrary(void* handle)
|
||||
{
|
||||
m_handle = handle;
|
||||
}
|
||||
|
||||
DynamicLibrary::~DynamicLibrary()
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
DynamicLibrary& DynamicLibrary::operator=(void* handle)
|
||||
{
|
||||
m_handle = handle;
|
||||
return *this;
|
||||
}
|
||||
|
||||
std::string DynamicLibrary::GetUnprefixedFilename(const char* filename)
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue