vulkan not working
This commit is contained in:
parent
a1be917178
commit
c45afab0dd
21 changed files with 1319 additions and 438 deletions
20
Crafter.Graphics-WindowWaylandWayland.cppm
Normal file
20
Crafter.Graphics-WindowWaylandWayland.cppm
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue