Changeset 40192 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Feb 21, 2012 10:46:37 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r40188 r40192 2509 2509 hrc = host->COMGETTER(Acceleration3DAvailable)(&fSupports3D); H(); 2510 2510 if (!fSupports3D) 2511 { 2512 setVMRuntimeErrorCallbackF(pVM, this, 0, 2513 "Accel3DNotAvailable", 2514 N_("This VM was configured to use 3D support. However, the " 2515 "3D support of the host is not working properly. Therefore " 2516 "3D support for the guest has been disabled")); 2517 fEnabled3D = false; 2518 } 2519 } 2520 2521 if (fEnabled3D) 2522 { 2511 return VMSetError(pVM, VERR_NOT_AVAILABLE, RT_SRC_POS, 2512 N_("This VM was configured to use 3D acceleration. However, the " 2513 "3D support of the host is not working properly and the " 2514 "VM cannot be started. To fix this problem, either " 2515 "fix the host 3D support (update the host graphics driver?) " 2516 "or disable 3D acceleration in the VM settings")); 2517 2523 2518 /* Load the service */ 2524 2519 rc = pVMMDev->hgcmLoadService("VBoxSharedCrOpenGL", "VBoxSharedCrOpenGL");
Note:
See TracChangeset
for help on using the changeset viewer.