From: Seunghun Lee Date: Thu, 16 Jan 2025 01:21:12 +0000 (+0900) Subject: e_comp_wl: Clear input region after use X-Git-Tag: accepted/tizen/unified/20250120.004729~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58e69c16e98f602adbd178967a45958e2a609819;p=platform%2Fupstream%2Fenlightenment.git e_comp_wl: Clear input region after use This is to silence noise made every commit. By clearing input region after use, we can suppress the noise. Change-Id: I752d8a8071f0376e411f2d469ba0f3dc7785a875 --- diff --git a/src/bin/server/e_comp_wl.c b/src/bin/server/e_comp_wl.c index 8d4e085e33..0eedee3d29 100644 --- a/src/bin/server/e_comp_wl.c +++ b/src/bin/server/e_comp_wl.c @@ -2833,6 +2833,10 @@ _e_comp_wl_client_input_region_update(E_Client *ec) pixman_region32_init(®ion); pixman_region32_intersect_rect(®ion, input_region, 0, 0, sw, sh); + /* NOTE: To silence noise made every commit time. + * It may get removed if we check whether input region is changed or not. + */ + pixman_region32_clear(input_region); if (pixman_region32_not_empty(®ion)) { E_Input_Thread_Request_EClient_Data ec_data;