Changeset 105993 in vbox for trunk/src/VBox
- Timestamp:
- Sep 9, 2024 5:54:09 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164738
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r105966 r105993 904 904 */ 905 905 /* static */ 906 bool PlatformProperties::s_isGraphicsControllerFeatureSupported(PlatformArchitecture_T enmArchitecture, GraphicsControllerType_T enmController, GraphicsFeature_T enmFeature) 906 bool PlatformProperties::s_isGraphicsControllerFeatureSupported(PlatformArchitecture_T enmArchitecture, 907 GraphicsControllerType_T enmController, 908 GraphicsFeature_T enmFeature) 907 909 { 908 910 std::vector<GraphicsFeature_T> vecSupportedGraphicsFeatures; 909 int vrc = PlatformProperties::s_getSupportedGraphicsControllerFeatures(enmArchitecture, enmController, vecSupportedGraphicsFeatures); 911 int vrc = PlatformProperties::s_getSupportedGraphicsControllerFeatures(enmArchitecture, enmController, 912 vecSupportedGraphicsFeatures); 910 913 if (RT_SUCCESS(vrc)) 911 914 return std::find(vecSupportedGraphicsFeatures.begin(), -
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r105959 r105993 1041 1041 #ifdef VBOX_WITH_VIRT_ARMV8 1042 1042 Bstr bstrEnableX86OnArm; 1043 HRESULT hrc = mParent->GetExtraData(Bstr("VBoxInternal2/EnableX86OnArm").raw(), bstrEnableX86OnArm.asOutParam());1043 HRESULT hrc = mParent->GetExtraData(Bstr("VBoxInternal2/EnableX86OnArm").raw(), bstrEnableX86OnArm.asOutParam()); 1044 1044 if (FAILED(hrc) || !bstrEnableX86OnArm.equals("1")) 1045 1045 {
Note:
See TracChangeset
for help on using the changeset viewer.