Changeset 57197 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Aug 5, 2015 3:15:10 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r57140 r57197 459 459 if (m_fUnused) 460 460 { 461 LogRel 2(("GUI: NotifyUpdate: Ignored!\n"));461 LogRel3(("GUI: NotifyUpdate: Ignored!\n")); 462 462 mOverlay.onNotifyUpdateIgnore (aX, aY, aW, aH); 463 463 /* Unlock access to frame-buffer: */ … … 794 794 if (m_fUnused) 795 795 { 796 #ifndef DEBUG_andy 797 LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n", 796 LogRel3(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n", 798 797 (unsigned long)uX, (unsigned long)uY, 799 798 (unsigned long)uWidth, (unsigned long)uHeight)); 800 #endif801 799 /* Unlock access to frame-buffer: */ 802 800 unlock(); … … 806 804 } 807 805 808 #ifndef DEBUG_andy809 806 /* Widget update is NOT thread-safe and *seems* never will be, 810 807 * We have to notify machine-view with the async-signal to perform update operation. */ 811 LogRel 2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",808 LogRel3(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n", 812 809 (unsigned long)uX, (unsigned long)uY, 813 810 (unsigned long)uWidth, (unsigned long)uHeight)); 814 #endif815 811 emit sigNotifyUpdate(uX, uY, uWidth, uHeight); 816 812 … … 835 831 if (m_fUnused) 836 832 { 837 LogRel 2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",833 LogRel3(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n", 838 834 (unsigned long)uX, (unsigned long)uY, 839 835 (unsigned long)uWidth, (unsigned long)uHeight)); … … 863 859 /* Widget update is NOT thread-safe and *seems* never will be, 864 860 * We have to notify machine-view with the async-signal to perform update operation. */ 865 LogRel 2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",861 LogRel3(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n", 866 862 (unsigned long)uX, (unsigned long)uY, 867 863 (unsigned long)uWidth, (unsigned long)uHeight)); … … 881 877 if (!pfSupported) 882 878 { 883 LogRel 2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",879 LogRel3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n", 884 880 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 885 881 … … 893 889 if (m_fUnused) 894 890 { 895 LogRel 2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",891 LogRel3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n", 896 892 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight)); 897 893 … … 914 910 && (uHeight > (ULONG)height())) 915 911 *pfSupported = FALSE; 916 LogRel 2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n",912 LogRel3(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n", 917 913 (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight, *pfSupported ? "TRUE" : "FALSE")); 918 914 … … 1109 1105 void UIFrameBufferPrivate::handlePaintEvent(QPaintEvent *pEvent) 1110 1106 { 1111 #ifndef DEBUG_andy 1112 LogRel2(("GUI: UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n", 1107 LogRel3(("GUI: UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n", 1113 1108 pEvent->rect().x(), pEvent->rect().y(), 1114 1109 pEvent->rect().width(), pEvent->rect().height())); 1115 #endif1116 1110 1117 1111 /* On mode switch the enqueued paint-event may still come
Note:
See TracChangeset
for help on using the changeset viewer.