X11rdp: fix after a8 merge
This commit is contained in:
parent
8d8ec92d02
commit
a340d550db
@ -301,10 +301,6 @@ struct _rdpPixmapRec
|
||||
then we force remote the pixmap */
|
||||
int use_count;
|
||||
int kind_width;
|
||||
/* number of times used in a remote operation
|
||||
if this gets above XRDP_USE_COUNT_THRESHOLD
|
||||
then we force remote the pixmap */
|
||||
int use_count;
|
||||
struct rdp_draw_item* draw_item_head;
|
||||
struct rdp_draw_item* draw_item_tail;
|
||||
};
|
||||
|
@ -488,36 +488,6 @@ draw_item_remove_all(rdpPixmapRec *priv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
static int
|
||||
remove_empties(rdpPixmapRec* priv)
|
||||
{
|
||||
struct rdp_draw_item* di;
|
||||
struct rdp_draw_item* di_prev;
|
||||
int rv;
|
||||
|
||||
rv = 0;
|
||||
/* remove draw items with empty regions */
|
||||
di = priv->draw_item_head;
|
||||
di_prev = 0;
|
||||
while (di != 0)
|
||||
{
|
||||
if (!RegionNotEmpty(di->reg))
|
||||
{
|
||||
LLOGLN(10, ("remove_empties: removing empty item type %d", di->type));
|
||||
draw_item_remove(priv, di);
|
||||
di = di_prev == 0 ? priv->draw_item_head : di_prev->next;
|
||||
rv++;
|
||||
}
|
||||
else
|
||||
{
|
||||
di_prev = di;
|
||||
di = di->next;
|
||||
}
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
int
|
||||
region_get_pixel_count(RegionPtr reg)
|
||||
|
Loading…
Reference in New Issue
Block a user