Changeset 105879 in vbox for trunk/src/VBox
- Timestamp:
- Aug 28, 2024 12:04:09 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/GraphicsAdapterImpl.cpp
r105873 r105879 305 305 switch (aFeature) 306 306 { 307 #ifndef VBOX_WITH_VIRT_ARMV8 /* On macOS (ARM) we don't support any 2D/3D acceleration for now. */ 307 /// @todo r=bird: This '#ifndef causes 2+ error messages popping up on arm when 308 /// starting a VM. I don't think VBOX_E_NOT_SUPPORTED is an appropiate 309 /// answer to a simple question whether a feature is supported or not. Returning 310 /// FALSE would be a lot more helpful in my opinion. 311 //#ifndef VBOX_WITH_VIRT_ARMV8 /* On macOS (ARM) we don't support any 2D/3D acceleration for now. */ 308 312 case GraphicsFeature_Acceleration2DVideo: 309 313 pfSetting = &mData->fAccelerate2DVideo; … … 314 318 pfSetting = &mData->fAccelerate3D; 315 319 break; 316 #endif320 //#endif 317 321 default: 318 322 break;
Note:
See TracChangeset
for help on using the changeset viewer.