From 91559fe48012da7b521a331c5c06da1cee628a0f Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Mon, 7 Feb 2022 20:31:20 +0530 Subject: [PATCH] pgo: add stub for render_xcursor_is_valid --- pgo/pgo.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pgo/pgo.c b/pgo/pgo.c index 2b7245d0..a9a89477 100644 --- a/pgo/pgo.c +++ b/pgo/pgo.c @@ -68,6 +68,12 @@ void render_refresh(struct terminal *term) {} void render_refresh_csd(struct terminal *term) {} void render_refresh_title(struct terminal *term) {} +bool +render_xcursor_is_valid(const struct seat *seat, const char *cursor) +{ + return true; +} + bool render_xcursor_set(struct seat *seat, struct terminal *term, const char *xcursor) {