Changeset 56359 in vbox
- Timestamp:
- Jun 11, 2015 1:19:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r56092 r56359 1170 1170 void UIFrameBufferPrivate::performResize(int iWidth, int iHeight) 1171 1171 { 1172 LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight));1173 1174 1172 /* Make sure machine-view is assigned: */ 1175 Assert PtrReturnVoid(m_pMachineView);1173 AssertReturnVoidStmt(m_pMachineView, LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight))); 1176 1174 1177 1175 /* Invalidate visible-region (if necessary): */ … … 1188 1186 if (m_sourceBitmap.isNull()) 1189 1187 { 1190 LogRel(("GUI: UIFrameBufferPrivate::performResize: "1191 "Using fallback buffer since no source -bitmap is provided\n"));1188 LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, " 1189 "Using fallback buffer since no source bitmap is provided\n", iWidth, iHeight)); 1192 1190 1193 1191 /* Remember new size came from hint: */ … … 1202 1200 else 1203 1201 { 1204 LogRel(("GUI: UIFrameBufferPrivate::performResize: "1205 "Directly using source -bitmap content\n"));1202 LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, " 1203 "Directly using source bitmap content\n", iWidth, iHeight)); 1206 1204 1207 1205 /* Acquire source-bitmap attributes: */
Note:
See TracChangeset
for help on using the changeset viewer.