diff options
| author | JMC47 <JMC4789@gmail.com> | 2020-03-12 03:52:47 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-12 03:52:47 -0400 |
| commit | 15acce847d44564afcc5b49ef26171fe4c4e51d2 (patch) | |
| tree | 92fb4573007ef87e27f5a7d7518e59f780fd9dec /Source/Core/DolphinNoGUI/PlatformX11.cpp | |
| parent | bb7623e3ba4c5ed1d7089e6c9be388d0f0272c2e (diff) | |
| parent | cdb0aa850da6fead21224eeed82df34e87e08fcc (diff) | |
Merge pull request #8666 from stenzek/fix-macos-vulkan-yet-again
Fix Vulkan/MoltenVK on macOS yet again
Diffstat (limited to 'Source/Core/DolphinNoGUI/PlatformX11.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/PlatformX11.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinNoGUI/PlatformX11.cpp b/Source/Core/DolphinNoGUI/PlatformX11.cpp index af8993a4a5..87d401cc72 100644 --- a/Source/Core/DolphinNoGUI/PlatformX11.cpp +++ b/Source/Core/DolphinNoGUI/PlatformX11.cpp @@ -159,6 +159,7 @@ WindowSystemInfo PlatformX11::GetWindowSystemInfo() const WindowSystemInfo wsi; wsi.type = WindowSystemType::X11; wsi.display_connection = static_cast<void*>(m_display); + wsi.render_window = reinterpret_cast<void*>(m_window); wsi.render_surface = reinterpret_cast<void*>(m_window); return wsi; } |
