From 97adca57d80fcc1c440552716ae90a0a4b93f52a Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Wed, 17 Feb 2021 07:51:41 -0500 Subject: [PATCH] Report platform feature support on Linux --- platforms/linux/main.cpp.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platforms/linux/main.cpp.in b/platforms/linux/main.cpp.in index be545b2..9e0b809 100755 --- a/platforms/linux/main.cpp.in +++ b/platforms/linux/main.cpp.in @@ -50,6 +50,10 @@ const char* platform::get_name() { return "Linux"; } +bool platform::supports_feature(const PlatformFeature feature) { + return false; +} + static inline xcb_intern_atom_reply_t* intern_atom_helper(xcb_connection_t *conn, bool only_if_exists, const char *str) { xcb_intern_atom_cookie_t cookie = xcb_intern_atom(conn, only_if_exists, strlen(str), str);