Changeset 81964 in vbox for trunk/include
- Timestamp:
- Nov 18, 2019 8:42:02 PM (5 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r81422 r81964 431 431 /** Main group, IFsObjInfo. */ 432 432 LOG_GROUP_MAIN_FSOBJINFO, 433 /** Main group, IGraphicsAdapter. */ 434 LOG_GROUP_MAIN_GRAPHICSADAPTER, 433 435 /** Main group, IGuest. */ 434 436 LOG_GROUP_MAIN_GUEST, … … 944 946 "MAIN_FRAMEBUFFEROVERLAY", \ 945 947 "MAIN_FSOBJINFO", \ 948 "MAIN_GRAPHICSADAPTER", \ 946 949 "MAIN_GUEST", \ 947 950 "MAIN_GUESTDIRECTORY", \ -
trunk/include/VBox/settings.h
r81581 r81964 653 653 * The key specifies the screen ID. */ 654 654 RecordingScreenMap mapScreens; 655 }; 656 657 /** 658 * NOTE: If you add any fields in here, you must update a) the constructor and b) 659 * the operator== which is used by MachineConfigFile::operator==(), or otherwise 660 * your settings might never get saved. 661 */ 662 struct GraphicsAdapter 663 { 664 GraphicsAdapter(); 665 666 bool areDefaultSettings() const; 667 668 bool operator==(const GraphicsAdapter &g) const; 669 670 GraphicsControllerType_T graphicsControllerType; 671 uint32_t ulVRAMSizeMB; 672 uint32_t cMonitors; 673 bool fAccelerate3D, 674 fAccelerate2DVideo; // requires settings version 1.8 (VirtualBox 3.1) 655 675 }; 656 676 … … 1112 1132 BootOrderMap mapBootOrder; // item 0 has highest priority 1113 1133 1114 GraphicsControllerType_T graphicsControllerType;1115 uint32_t ulVRAMSizeMB;1116 uint32_t cMonitors;1117 bool fAccelerate3D,1118 fAccelerate2DVideo; // requires settings version 1.8 (VirtualBox 3.1)1119 1120 1134 FirmwareType_T firmwareType; // requires settings version 1.9 (VirtualBox 3.1) 1121 1135 … … 1133 1147 BIOSSettings biosSettings; 1134 1148 RecordingSettings recordingSettings; 1149 GraphicsAdapter graphicsAdapter; 1135 1150 USB usbSettings; 1136 1151 NetworkAdaptersList llNetworkAdapters;
Note:
See TracChangeset
for help on using the changeset viewer.