From: Mike Blumenkrantz Date: Mon, 10 Aug 2015 19:15:54 +0000 (-0400) Subject: add comp util function for determining whether xwayland is active X-Git-Tag: upstream/0.20.0~411 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c14b4a17b5f16685fa4c0bcdd68bfebbb28e230;p=platform%2Fupstream%2Fenlightenment.git add comp util function for determining whether xwayland is active --- diff --git a/src/bin/e_comp.h b/src/bin/e_comp.h index 5aceb01..74f3932 100644 --- a/src/bin/e_comp.h +++ b/src/bin/e_comp.h @@ -233,5 +233,11 @@ e_comp_util_has_x(void) return !!e_comp->root; } +static inline Eina_Bool +e_comp_util_has_xwayland(void) +{ + return (e_comp->comp_type != E_PIXMAP_TYPE_X) && e_comp_util_has_x(); +} + #endif #endif