off screen bitmap creation, don't invalidate whole area
This commit is contained in:
parent
f3cc2a5154
commit
f91b33ed13
@ -259,6 +259,7 @@ struct _rdpPixmapRec
|
||||
int con_number;
|
||||
int is_dirty;
|
||||
int pad0;
|
||||
int kind_width;
|
||||
struct rdp_draw_item* draw_item_head;
|
||||
struct rdp_draw_item* draw_item_tail;
|
||||
};
|
||||
|
@ -64,6 +64,7 @@ extern int g_use_rail; /* in rdpmain.c */
|
||||
extern int g_do_dirty_os; /* in rdpmain.c */
|
||||
extern int g_do_dirty_ons; /* in rdpmain.c */
|
||||
extern rdpPixmapRec g_screenPriv; /* in rdpmain.c */
|
||||
extern int g_con_number; /* in rdpmain.c */
|
||||
|
||||
ColormapPtr g_rdpInstalledColormap;
|
||||
|
||||
@ -685,6 +686,8 @@ rdpCreatePixmap(ScreenPtr pScreen, int width, int height, int depth,
|
||||
rv = pScreen->CreatePixmap(pScreen, width, height, depth, usage_hint);
|
||||
priv = GETPIXPRIV(rv);
|
||||
priv->rdpindex = -1;
|
||||
priv->con_number = g_con_number;
|
||||
priv->kind_width = width;
|
||||
pScreen->ModifyPixmapHeader(rv, org_width, 0, 0, 0, 0, 0);
|
||||
pScreen->CreatePixmap = rdpCreatePixmap;
|
||||
return rv;
|
||||
@ -731,30 +734,35 @@ xrdp_is_os(PixmapPtr pix, rdpPixmapPtr priv)
|
||||
int height;
|
||||
struct image_data id;
|
||||
|
||||
if (priv->status == 0)
|
||||
if (!XRDP_IS_OS(priv))
|
||||
{
|
||||
width = pix->drawable.width;
|
||||
height = pix->drawable.height;
|
||||
if ((pix->drawable.depth >= g_rdpScreen.depth) &&
|
||||
(width > 1) && (height > 1))
|
||||
(width > 1) && (height > 1) && (priv->kind_width > 0))
|
||||
{
|
||||
width = (width + 3) & ~3;
|
||||
LLOGLN(10, ("%d %d", priv->kind_width, pix->drawable.width));
|
||||
priv->rdpindex = rdpup_add_os_bitmap(pix, priv);
|
||||
if (priv->rdpindex >= 0)
|
||||
{
|
||||
priv->status = 1;
|
||||
rdpup_create_os_surface(priv->rdpindex, width, height);
|
||||
rdpup_create_os_surface(priv->rdpindex,
|
||||
priv->kind_width, height);
|
||||
box.x1 = 0;
|
||||
box.y1 = 0;
|
||||
box.x2 = width;
|
||||
box.y2 = height;
|
||||
if (g_do_dirty_os)
|
||||
{
|
||||
draw_item_remove_all(priv);
|
||||
RegionInit(®1, &box, 0);
|
||||
draw_item_add_img_region(priv, ®1, GXcopy, RDI_IMGLL);
|
||||
RegionUninit(®1);
|
||||
priv->is_dirty = 1;
|
||||
if (priv->con_number != g_con_number)
|
||||
{
|
||||
draw_item_remove_all(priv);
|
||||
RegionInit(®1, &box, 0);
|
||||
draw_item_add_img_region(priv, ®1, GXcopy, RDI_IMGLL);
|
||||
RegionUninit(®1);
|
||||
priv->is_dirty = 1;
|
||||
priv->con_number = g_con_number;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -55,6 +55,8 @@ rdpPixmapRec g_screenPriv;
|
||||
/* if true, running in RemoteApp / RAIL mode */
|
||||
int g_use_rail = 0;
|
||||
|
||||
int g_con_number = 0; /* increments for each connection */
|
||||
|
||||
WindowPtr g_invalidate_window = 0;
|
||||
|
||||
/* if true, use a unix domain socket instead of a tcp socket */
|
||||
|
@ -28,8 +28,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
#define LLOGLN(_level, _args) \
|
||||
do { if (_level < LOG_LEVEL) { ErrorF _args ; ErrorF("\n"); } } while (0)
|
||||
|
||||
int g_con_number = 0; /* increments for each connection */
|
||||
|
||||
static int g_listen_sck = 0;
|
||||
static int g_sck = 0;
|
||||
static int g_sck_closed = 0;
|
||||
@ -63,6 +61,7 @@ extern int g_use_uds; /* in rdpmain.c */
|
||||
extern char g_uds_data[]; /* in rdpmain.c */
|
||||
extern int g_do_dirty_ons; /* in rdpmain.c */
|
||||
extern rdpPixmapRec g_screenPriv; /* in rdpmain.c */
|
||||
extern int g_con_number; /* in rdpmain.c */
|
||||
|
||||
struct rdpup_os_bitmap
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user