This adds new features (such as themes) alongside fixing numerous bugs. This should be kept up-to-date with upstream more often and changes to it should be PR'd back to its main repo.
10 lines
155 B
C++
10 lines
155 B
C++
#pragma once
|
|
|
|
#include <wayland-client-protocol.h>
|
|
|
|
class WaylandNativeHandle
|
|
{
|
|
public:
|
|
wl_display* display = nullptr;
|
|
wl_surface* surface = nullptr;
|
|
};
|