evas_common_privat: improve tiler merge flag

when this is a int and you assign 0, the whole "0" for the entire int is
moved. When this is a bit flag like this, it is a simple | operation,
which makes the whole thing somehow faster.

Reviewed-by: Christopher Michael <devilhorns@comcast.net>
Differential Revision: https://phab.enlightenment.org/D11998
This commit is contained in:
Marcel Hollerbach 2020-06-10 20:48:45 +02:00
parent 98fd37e768
commit d55b7939d6
1 changed files with 1 additions and 1 deletions

View File

@ -948,12 +948,12 @@ struct _Tilebuf
struct {
short w, h;
} tile_size;
int need_merge;
list_t rects;
struct {
int x, y, w, h;
} prev_add, prev_del;
Eina_Bool strict_tiles : 1;
Eina_Bool need_merge : 1;
#endif
};