mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-22 07:58:56 +02:00
exclude more stuff from vulkan
This commit is contained in:
parent
d4c5ab0704
commit
a0a397166b
4 changed files with 15 additions and 1 deletions
|
|
@ -77,6 +77,12 @@ EmuWindow_SDL2_VK::EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsyste
|
|||
window_info.type = Core::Frontend::WindowSystemType::Android;
|
||||
window_info.render_surface = reinterpret_cast<void*>(wm.info.android.window);
|
||||
break;
|
||||
#endif
|
||||
#ifdef SDL_VIDEO_DRIVER_DIRECTFB
|
||||
case SDL_SYSWM_TYPE::SDL_SYSWM_DIRECTFB:
|
||||
window_info.type = Core::Frontend::WindowSystemType::Headless;
|
||||
window_info.render_surface = reinterpret_cast<void*>(wm.info.dfb.window);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
LOG_CRITICAL(Frontend, "Window manager subsystem {} not implemented", wm.subsystem);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue