VirtualBox

Changeset 3398 in vbox for trunk


Ignore:
Timestamp:
Jul 3, 2007 6:05:56 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
22598
Message:

Call VRDP on EMT only when Framebuffer is not being resized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/DisplayImpl.cpp

    r3358 r3398  
    499499             * Inform the server here only if VBVA is disabled.
    500500             */
    501             mParent->consoleVRDPServer()->SendUpdateBitmap(uScreenId, x, y, w, h);
     501            if (maFramebuffers[uScreenId].u32ResizeStatus == ResizeStatus_Void)
     502            {
     503                mParent->consoleVRDPServer()->SendUpdateBitmap(uScreenId, x, y, w, h);
     504            }
    502505        }
    503506    }
     
    20512054             * fullscreen updates for new clients.
    20522055             */
    2053             Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
    2054             pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0);
     2056            if (pFBInfo->u32ResizeStatus == ResizeStatus_Void)
     2057            {
     2058                Assert (pDisplay->mParent && pDisplay->mParent->consoleVRDPServer());
     2059                pDisplay->mParent->consoleVRDPServer()->SendUpdate (uScreenId, NULL, 0);
     2060            }
    20552061        }
    20562062    }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette