e_comp: remove nocomp variable 83/315683/2
authorSooChan Lim <sc1.lim@samsung.com>
Mon, 2 Dec 2024 09:13:20 +0000 (18:13 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Wed, 4 Dec 2024 04:59:35 +0000 (04:59 +0000)
It is not used anymore

Change-Id: I83735dd2ab6211b78a435be209b5044faee7106c

src/bin/compmgr/e_comp.c
src/bin/compmgr/e_comp_object.c
src/bin/compmgr/e_comp_object_intern.h
src/include/e_comp.h

index aecc298ecc0f0db72f1a3354815bcf321ab624a1..cd7b819d4586a0dc95c049c819a02cd93f961f09 100644 (file)
@@ -664,7 +664,7 @@ e_comp_grab_input(Eina_Bool mouse, Eina_Bool kbd)
      mwin = e_comp->ee_win;
    if (kbd || e_comp->input_mouse_grabs)
      kwin = e_comp->ee_win;
-   //e_comp_override_add(); //nocomp condition
+
    if ((e_comp->input_mouse_grabs && e_comp->input_key_grabs) ||
        e_grabinput_get(mwin, 0, kwin))
      {
@@ -697,7 +697,6 @@ e_comp_ungrab_input(Eina_Bool mouse, Eina_Bool kbd)
    if (kbd && (!e_comp->input_key_grabs))
      kwin = e_comp->ee_win;
 
-   //e_comp_override_timed_pop(); //nocomp condition
    if ((!mwin) && (!kwin)) return;
    e_grabinput_release(mwin, kwin);
    evas_event_feed_mouse_out(e_comp->evas, 0, NULL);
@@ -1544,7 +1543,6 @@ e_comp_ungrab_input_without_inout(Eina_Bool mouse, Eina_Bool kbd)
    if (kbd && (!e_comp->input_key_grabs))
      kwin = e_comp->ee_win;
 
-   //e_comp_override_timed_pop(); //nocomp condition
    if ((!mwin) && (!kwin)) return;
    e_grabinput_release(mwin, kwin);
    if (e_client_focused_get()) return;
index 9044f2d9c128535e3747c056998a1100841fc89c..22ea3ad72682eb245af4d533160a1125cf79bc87 100644 (file)
@@ -3640,7 +3640,6 @@ e_comp_object_damage(Evas_Object *obj, int x, int y, int w, int h)
    API_ENTRY;
 
    if (cw->ec->input_only || (!cw->updates)) return;
-   if (cw->nocomp) return;
 
    if (e_comp_is_on_overlay(cw->ec))
      {
index 054740c9272ad786f1f125e4fdc596c8f144e69a..5f12edca43cb5973bab9728d177010a459673927 100644 (file)
@@ -71,7 +71,6 @@ struct _E_Comp_Object
    Eina_Bool            redirected : 1;  // has updates to fetch
    Eina_Bool            native : 1;  // native
 
-   Eina_Bool            nocomp : 1;  // nocomp applied
    Eina_Bool            hwc_need_update : 1;  // this window updated while on e_plane to do hw composite
    Eina_Bool            real_hid : 1;  // last hide was a real window unmap
 
index 9d7508f15322cd3e772eea7953c30ae388e48343..bfe036975924902169c147f626cfe6be12e1f438 100644 (file)
@@ -120,7 +120,6 @@ struct _E_Comp
    Ecore_Timer    *nocomp_delay_timer;
    Ecore_Timer    *nocomp_override_timer;
    int             nocomp_override; //number of times hwc override has been requested
-   Eina_Bool       nocomp : 1; // TODO: remove it from E_Comp!!
    Eina_Bool       hwc : 1;
    Eina_Bool       hwc_send_redraw_request;
    Eina_Bool       hwc_prefer_gbm;