Changeset 51657 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jun 18, 2014 9:52:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r51642 r51657 176 176 STDMETHODIMP UIFrameBuffer::NotifyChange(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight) 177 177 { 178 CDisplaySourceBitmap sourceBitmap; 179 m_pMachineView->session().GetConsole().GetDisplay().QuerySourceBitmap(uScreenId, sourceBitmap); 180 178 181 /* Lock access to frame-buffer: */ 179 182 lock(); … … 201 204 202 205 /* Acquire new pending bitmap: */ 203 m_pendingSourceBitmap = 0; 204 m_pMachineView->session().GetConsole().GetDisplay().QuerySourceBitmap(uScreenId, m_pendingSourceBitmap); 206 m_pendingSourceBitmap = sourceBitmap; 205 207 206 208 /* Widget resize is NOT thread-safe and *probably* never will be,
Note:
See TracChangeset
for help on using the changeset viewer.