Change the default amount of video ram to 16MB (#1435)

Libvirt did already change the current 9216kb
to 16384kb when starting a domain so in practice this is a no-op.

The libvirt default was changed in 2014 in 81ba2298b2
This commit is contained in:
Ruben Kerkhof
2022-01-17 15:10:23 +01:00
committed by GitHub
parent 6ba7dcf178
commit a9e0fefa1d
23 changed files with 23 additions and 23 deletions

View File

@@ -879,7 +879,7 @@ module VagrantPlugins
@graphics_port = -1 if @graphics_port == UNSET_VALUE
@graphics_ip = '127.0.0.1' if @graphics_ip == UNSET_VALUE
@video_type = 'cirrus' if @video_type == UNSET_VALUE
@video_vram = 9216 if @video_vram == UNSET_VALUE
@video_vram = 16384 if @video_vram == UNSET_VALUE
@video_accel3d = false if @video_accel3d == UNSET_VALUE
@graphics_gl = @video_accel3d if @graphics_gl == UNSET_VALUE
@sound_type = nil if @sound_type == UNSET_VALUE