Changeset 53889 in vbox
- Timestamp:
- Jan 21, 2015 9:58:22 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97737
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/presenter/server_presenter.cpp
r53858 r53889 1833 1833 if (idScreen >= CR_MAX_GUEST_MONITORS) 1834 1834 { 1835 WARN(("invalid idScreen %d", idScreen));1835 crDebug("Can't set scale factor because specified screen ID (%u) is out of range (max=%d).", idScreen, CR_MAX_GUEST_MONITORS); 1836 1836 return VERR_INVALID_PARAMETER; 1837 1837 } … … 1847 1847 return rc ? 0 : VERR_LOCK_FAILED; 1848 1848 } 1849 } 1849 else 1850 crDebug("Can't set scale factor bacause overlay window obgect not yet created."); 1851 } 1852 else 1853 crDebug("Can't set scale factor because specified screen ID cannot be mapped to list of available displays."); 1850 1854 1851 1855 return VERR_INVALID_PARAMETER; -
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r53888 r53889 3444 3444 else 3445 3445 { 3446 Log (("Running out of memory on attempt to set OpenGL content scale factor. Ignored.\n"));3446 LogRel(("Running out of memory on attempt to set OpenGL content scale factor. Ignored.\n")); 3447 3447 hr = E_OUTOFMEMORY; 3448 3448 } 3449 3449 } 3450 3450 else 3451 Log (("Internal error occurred on attempt to set OpenGL content scale factor. Ignored.\n"));3451 LogRel(("Internal error occurred on attempt to set OpenGL content scale factor. Ignored.\n")); 3452 3452 } 3453 3453 else 3454 Log (("Attempt to specify OpenGL content scale factor while corresponding HGCM host service not yet runing. Ignored.\n"));3454 LogRel(("Attempt to specify OpenGL content scale factor while corresponding HGCM host service not yet runing. Ignored.\n")); 3455 3455 } 3456 3456 else 3457 Log (("Attempt to specify OpenGL content scale factor while 3D acceleration is disabled in VM config. Ignored.\n"));3457 LogRel(("Attempt to specify OpenGL content scale factor while 3D acceleration is disabled in VM config. Ignored.\n")); 3458 3458 3459 3459 return hr;
Note:
See TracChangeset
for help on using the changeset viewer.