如何提升显存?

来源:百度知道 编辑:UC知道 时间:2024/09/21 04:33:42
显卡 Intel(R) 82845G/GL/GE/PE/GV Graphics Controller
显存 64 MB 当前刷新率 75 Hz 驱动版本 Version 6.13.10.3510

如何提升显存?提升显存要多少钱?显存是不是越打越好?太大会对电脑有影响吗?
如何设置共享内存以增加集成显卡的显存. ?

当然不是越大越好啦!

还要看频率,否则是浪费. 你可以设置共享内存以增加集成显卡的显存.

在windows 2000或xp中,可以打开d3d功能,从中可以看到在你虚拟机所在目录中有一个文件后缀为.vmx 用记事本打开 在文末添加:
svga.vramSize = 67108864 (1024*1024*64)
可将显存加到64M最大可以加到128M(1024*1024*128)
即你所想要的显存大小为n的话,设置
svga.vramSize =n*1024*1024
摄制完成后打开虚拟系统,重新安装vmtools,选择modify就可以
安装完以后,察看显存以变为你所想要的大小的了:),我试过了,成功

上面是在系统中设D3D中说的,你要在虚拟系统中运行3D游戏的话
首先主系统要安装有d9c,其次虚拟机中.vmx文件
加入以下代码:
# Experimental Support for Direct3D (option 1 of 3)
# (REQUIRED) The line below enables accelerated 3D on the host.
# It is required to support 3D in the guest
mks.enable3d = TRUE
# Experimental Support for Direct3D (option 2 of 3)
# (OPTIONAL) The line below increases the amount of VRAM on the
# virtual display card to 64 MB. Adding more VRAM helps to reduce
# thrashing in the guest. The maximum value is 128 MB.
# This option is expressed in bytes.
svga.vramSize = 67108864
# E