Changeset 104786 in vbox for trunk/src/VBox
- Timestamp:
- May 27, 2024 8:42:44 AM (6 months ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.h
r104777 r104786 72 72 #endif 73 73 74 #include <VBox/graphics.h> /* For VRAM ranges. */ 75 74 76 #include <iprt/list.h> 75 77 … … 77 79 /** Use VBE bytewise I/O. Only needed for Windows Longhorn/Vista betas and backwards compatibility. */ 78 80 #define VBE_BYTEWISE_IO 79 80 #ifdef VBOX81 /** The default amount of VRAM. */82 # define VGA_VRAM_DEFAULT (_4M)83 /** The maximum amount of VRAM. Limited by VBOX_MAX_ALLOC_PAGE_COUNT. */84 # define VGA_VRAM_MAX (256 * _1M)85 /** The minimum amount of VRAM. */86 # define VGA_VRAM_MIN (_1M)87 #endif88 89 81 90 82 /** @name Macros dealing with partial ring-0/raw-mode VRAM mappings. -
trunk/src/VBox/Devices/Graphics/vmsvga_include/svga_reg.h
r100690 r104786 41 41 42 42 #include "svga_types.h" 43 44 #include <VBox/graphics.h> /* For VRAM ranges. */ 43 45 44 46 /* … … 2268 2270 * Size of SVGA device memory such as frame buffer and FIFO. 2269 2271 */ 2270 #define SVGA_VRAM_MIN_SIZE (4 * 640 * 480) /* bytes */2271 #define SVGA_VRAM_MIN_SIZE_3D (16 * 1024 * 1024)2272 #define SVGA_VRAM_MAX_SIZE (128 * 1024 * 1024)2273 2272 #define SVGA_MEMORY_SIZE_MAX (1024 * 1024 * 1024) 2274 2273 #define SVGA_FIFO_SIZE_MAX (2 * 1024 * 1024) -
trunk/src/VBox/Main/Makefile.kmk
r104783 r104786 211 211 # Unconditionally enable the new semaphore key generation code 212 212 VBOX_MAIN_DEFS += VBOX_WITH_NEW_SYS_V_KEYGEN 213 214 # Main graphics include paths. Used by VBoxC and VBoxSVC.215 VBOX_MAIN_GRAPHICS_INCS = \216 $(PATH_ROOT)/src/VBox/Devices/Graphics/ \217 $(if $(VBOX_WITH_VMSVGA),$(PATH_ROOT)/src/VBox/Devices/Graphics/vmsvga_include,) \218 $(VBOX_GRAPHICS_INCS)219 213 220 214 VBOX_IDL_FILE.MSCOM = $(VBOX_PATH_SDK)/bindings/mscom/idl/VirtualBox.idl … … 573 567 $(dir $(VBOX_XML_SCHEMADEFS_H)) \ 574 568 $(VBOX_MAIN_APIWRAPPER_INCS) \ 575 $(VBOX_MAIN_GRAPHICS_INCS) \576 569 . \ 570 $(VBOX_GRAPHICS_INCS) 577 571 VBoxSVC_INCS.win = \ 578 572 $(VBoxCOM_0_OUTDIR) … … 1082 1076 $(dir $(VBOX_XML_SCHEMADEFS_H)) \ 1083 1077 $(VBOX_MAIN_APIWRAPPER_DIR)/dtrace \ 1084 $(VBOX_ MAIN_GRAPHICS_INCS)1078 $(VBOX_GRAPHICS_INCS) 1085 1079 VBoxC_INCS.win = \ 1086 1080 $(VBoxCOM_0_OUTDIR) \ -
trunk/src/VBox/Main/src-all/PlatformPropertiesImpl.cpp
r104781 r104786 32 32 #include "Global.h" 33 33 34 #include "VBox/vmm/pdmcritsect.h" /* required by DevVGA.h */35 #include "VBox/param.h" /* Ditto. */36 #include "DevVGA.h"37 38 34 #include <iprt/cpp/utils.h> 39 35 36 #include <VBox/graphics.h> /* For VRAM ranges. */ 40 37 #include <VBox/settings.h> 41 38
Note:
See TracChangeset
for help on using the changeset viewer.