Changeset 84723 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 8, 2020 2:58:31 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r83312 r84723 881 881 if (!pfSupported) 882 882 { 883 LogRel 3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",883 LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n", 884 884 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 885 885 … … 893 893 if (m_fUnused) 894 894 { 895 LogRel 3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",895 LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n", 896 896 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 897 897 … … 914 914 && (uHeight > (ULONG)height())) 915 915 *pfSupported = FALSE; 916 LogRel3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n", 917 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight, *pfSupported ? "TRUE" : "FALSE")); 916 if (*pfSupported) 917 LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu is supported\n", 918 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 919 else 920 LogRel(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu is NOT supported\n", 921 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 918 922 919 923 /* Unlock access to frame-buffer: */ … … 1188 1192 if (m_sourceBitmap.isNull()) 1189 1193 { 1190 LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, Using fallback buffer since no source bitmap is provided\n",1191 iWidth, iHeight));1192 1193 1194 /* Remember new size came from hint: */ 1194 1195 m_iWidth = iWidth; 1195 1196 m_iHeight = iHeight; 1197 LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, Using fallback buffer since no source bitmap is provided\n", 1198 m_iWidth, m_iHeight)); 1196 1199 1197 1200 /* And recreate fallback buffer: */ … … 1202 1205 else 1203 1206 { 1204 LogRel2(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, Directly using source bitmap content\n",1205 iWidth, iHeight));1206 1207 1207 /* Acquire source-bitmap attributes: */ 1208 1208 BYTE *pAddress = NULL; … … 1223 1223 m_iWidth = (int)ulWidth; 1224 1224 m_iHeight = (int)ulHeight; 1225 LogRel2(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d, Directly using source bitmap content\n", 1226 m_iWidth, m_iHeight)); 1225 1227 1226 1228 /* Recreate QImage on the basis of source-bitmap content: */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r84499 r84723 431 431 storeGuestSizeHint(QSize(iWidth, iHeight)); 432 432 433 LogRel Flow(("GUI: UIMachineView::sltHandleNotifyChange: Complete for Screen=%d, Size=%dx%d\n",434 (unsigned long)m_uScreenId, iWidth, iHeight));433 LogRel2(("GUI: UIMachineView::sltHandleNotifyChange: Complete for Screen=%d, Size=%dx%d\n", 434 (unsigned long)m_uScreenId, frameBufferSizeNew.width(), frameBufferSizeNew.height())); 435 435 } 436 436
Note:
See TracChangeset
for help on using the changeset viewer.