- Timestamp:
- Jun 21, 2013 6:00:14 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86634
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r46364 r46716 237 237 && (uWidth > (ULONG)screen.width()) 238 238 && (uWidth > (ULONG)width())) 239 {240 LogRel(("Host rejected width: %u.\n", uWidth));241 239 *pbSupported = FALSE; 242 } 240 243 241 if ( (screen.height() != 0) 244 242 && (uHeight > (ULONG)screen.height()) 245 243 && (uHeight > (ULONG)height())) 246 {247 LogRel(("Host rejected height: %u.\n", uHeight));248 244 *pbSupported = FALSE; 249 } 245 250 246 LogFlowThisFunc(("screenW=%lu, screenH=%lu -> aSupported=%s\n", 251 247 screen.width(), screen.height(), *pbSupported ? "TRUE" : "FALSE"));
Note:
See TracChangeset
for help on using the changeset viewer.