Some progress
This commit is contained in:
@@ -4,12 +4,9 @@
|
||||
#include <SDL3/SDL.h>
|
||||
#include <InputSettings.hpp>
|
||||
|
||||
RenderWidget::RenderWidget(const std::shared_ptr<n64::Core> &core, InputSettings& inputSettings, SDL_Window* window) : inputSettings(inputSettings) {
|
||||
if (!Vulkan::Context::init_loader(nullptr)) {
|
||||
Util::panic("Could not initialize Vulkan ICD");
|
||||
}
|
||||
|
||||
wsiPlatform = std::make_shared<SDLWSIPlatform>(core, inputSettings, window);
|
||||
RenderWidget::RenderWidget(const std::shared_ptr<n64::Core> &core, SDL_Window* window) {
|
||||
wsiPlatform = std::make_shared<SDLWSIPlatform>(core, window);
|
||||
windowInfo = std::make_shared<SDLParallelRdpWindowInfo>(window);
|
||||
}
|
||||
|
||||
void SDLWSIPlatform::poll_input() {
|
||||
|
||||
Reference in New Issue
Block a user