Fix parallel-rdp integration and reset whole state upon loading rom

This commit is contained in:
CocoSimone
2022-08-13 11:44:35 +02:00
parent ed34d9c9ba
commit e2313c212c
41 changed files with 250 additions and 92 deletions

View File

@@ -10,15 +10,14 @@
struct Window {
explicit Window(n64::Core& core);
~Window();
ImDrawData* Present();
ImDrawData* Present(n64::Core& core);
[[nodiscard]] bool gotClosed(SDL_Event event);
private:
SDL_Window* window;
n64::Core core;
void InitSDL();
void InitImgui();
void Render();
void Render(n64::Core& core);
VkInstance instance{};
VkPhysicalDevice physicalDevice{};