vulkan not working

This commit is contained in:
Jorijn van der Graaf 2025-04-19 15:46:26 +02:00
commit c45afab0dd
21 changed files with 1319 additions and 438 deletions

View file

@ -0,0 +1,20 @@
module;
#include <cstdint>
#include <string>
#include <thread>
export module Crafter.Graphics:WindowWaylandWayland;
import Crafter.Event;
import :WindowWayland;
import Crafter.Component;
export namespace Crafter {
class WindowWaylandWayland : public WindowWayland {
public:
WindowWaylandWayland(std::string name, std::uint32_t width, std::uint32_t height);
void Start();
private:
std::thread thread;
};
}