This is to silence noise made every commit.
By clearing input region after use, we can suppress the noise.
Change-Id: I752d8a8071f0376e411f2d469ba0f3dc7785a875
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;