Changeset 46342 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 31, 2013 12:45:43 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86133
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r46293 r46342 232 232 && (uWidth > (ULONG)screen.width()) 233 233 && (uWidth > (ULONG)width())) 234 { 235 LogRel(("Host rejected width: %u.\n", uWidth)); 234 236 *pbSupported = FALSE; 237 } 235 238 if ( (screen.height() != 0) 236 239 && (uHeight > (ULONG)screen.height()) 237 240 && (uHeight > (ULONG)height())) 241 { 242 LogRel(("Host rejected height: %u.\n", uHeight)); 238 243 *pbSupported = FALSE; 244 } 239 245 LogFlowThisFunc(("screenW=%lu, screenH=%lu -> aSupported=%s\n", 240 246 screen.width(), screen.height(), *pbSupported ? "TRUE" : "FALSE"));
Note:
See TracChangeset
for help on using the changeset viewer.