Changeset 101132 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 15, 2023 4:11:19 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r101129 r101132 683 683 static const GraphicsControllerType_T aGraphicsControllerTypes[] = 684 684 { 685 GraphicsControllerType_Null, 685 686 GraphicsControllerType_VBoxVGA, 686 GraphicsControllerType_VMSVGA, 687 GraphicsControllerType_VBoxSVGA, 687 GraphicsControllerType_VBoxSVGA 688 #ifdef VBOX_WITH_VMSVGA 689 , GraphicsControllerType_VMSVGA 690 #endif 691 }; 692 aSupportedGraphicsControllerTypes.assign(aGraphicsControllerTypes + 1 /* Don't include _Null */, 693 aGraphicsControllerTypes + RT_ELEMENTS(aGraphicsControllerTypes)); 694 break; 695 } 696 697 case PlatformArchitecture_ARM: 698 { 699 static const GraphicsControllerType_T aGraphicsControllerTypes[] = 700 { 688 701 GraphicsControllerType_Null 689 }; 690 aSupportedGraphicsControllerTypes.assign(aGraphicsControllerTypes, 691 aGraphicsControllerTypes + RT_ELEMENTS(aGraphicsControllerTypes)); 692 break; 693 } 694 695 case PlatformArchitecture_ARM: 696 { 697 static const GraphicsControllerType_T aGraphicsControllerTypes[] = 698 { 699 GraphicsControllerType_VMSVGA, 700 GraphicsControllerType_Null 701 }; 702 aSupportedGraphicsControllerTypes.assign(aGraphicsControllerTypes, 702 #ifdef VBOX_WITH_VMSVGA 703 , GraphicsControllerType_VMSVGA 704 #endif 705 }; 706 aSupportedGraphicsControllerTypes.assign(aGraphicsControllerTypes /* Don't include _Null */, 703 707 aGraphicsControllerTypes + RT_ELEMENTS(aGraphicsControllerTypes)); 704 708 break; … … 733 737 #endif 734 738 }; 735 aSupportedNetworkAdapterTypes.assign(aNetworkAdapterTypes ,739 aSupportedNetworkAdapterTypes.assign(aNetworkAdapterTypes + 1 /* Don't include _Null */, 736 740 aNetworkAdapterTypes + RT_ELEMENTS(aNetworkAdapterTypes)); 737 741 break; … … 752 756 #endif 753 757 }; 754 aSupportedNetworkAdapterTypes.assign(aNetworkAdapterTypes ,758 aSupportedNetworkAdapterTypes.assign(aNetworkAdapterTypes + 1 /* Don't include _Null */, 755 759 aNetworkAdapterTypes + RT_ELEMENTS(aNetworkAdapterTypes)); 756 760 break;
Note:
See TracChangeset
for help on using the changeset viewer.