Changeset 105966 in vbox
- Timestamp:
- Sep 5, 2024 7:13:29 AM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164706
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r105964 r105966 850 850 case GraphicsControllerType_VBoxSVGA: 851 851 { 852 #if defined(VBOX_WITH_VIDEOHWACCEL) || defined(VBOX_WITH_3D_ACCELERATION) /* Work around zero-sized arrays. */ 852 853 static const GraphicsFeature_T s_aGraphicsFeatures[] = 853 854 { 854 # ifdef VBOX_WITH_VIDEOHWACCEL855 # ifdef VBOX_WITH_VIDEOHWACCEL 855 856 /* @bugref{9691} -- The legacy VHWA acceleration has been disabled completely. */ 856 857 //GraphicsFeature_Acceleration2DVideo, 857 # endif858 # ifdef VBOX_WITH_3D_ACCELERATION858 # endif 859 # ifdef VBOX_WITH_3D_ACCELERATION 859 860 GraphicsFeature_Acceleration3D 860 # endif861 # endif 861 862 }; 862 863 RT_CPP_VECTOR_ASSIGN_ARRAY(vecSupportedGraphicsFeatures, s_aGraphicsFeatures); 864 # endif 863 865 break; 864 866 } 865 #endif 867 #endif /* VBOX_WITH_VMSVGA */ 866 868 case GraphicsControllerType_VBoxVGA: 867 869 RT_FALL_THROUGH(); … … 873 875 874 876 default: 875 { 876 AssertFailedReturn(VERR_INVALID_PARAMETER); 877 break; /* Never reached. */ 878 } 877 /* In case GraphicsControllerType_VBoxSVGA is not available. */ 878 break; 879 879 } 880 880
Note:
See TracChangeset
for help on using the changeset viewer.