昨天去看了《功夫熊猫2》的3D

之前在美团花19.8买了两张洪山礼堂的电影票,准备去看功夫熊猫2的

因为这个优惠卷是通票,肯定是看3D的,恰好昨天又是儿童节,都是家长带着孩子在看的。

别人一家三口拿着三张红头像的买3D的票,然后找30,我拿着一张破纸写的几个数字,哈哈。到一边偷笑。

总得来说3D的效果还是不错的,不过眼睛很水的,跟参加NV的活动提供的眼睛真的是差很远啊。

Windows 7使用DwmApi实现快捷方式调用3D桌面

实现效果:
使用快捷方式就可以实现按住Win+Tab弹出3D桌面

操作步骤:

1、在桌面中单击右键新建一个“快捷方式”

2、在“请键入项目的位置”中输入

%SystemRoot%\system32\rundll32.exe DwmApi #105

3、点击“下一步”后在“键入该快捷方式的名称”中输入“3D窗口切换”,然后再点击“完成”

其实到这一步已经完成了,要是想追求完美,就可以按照下面的方法继续操作

4、在该快捷图标上“右键”--“属性”--“更改图标”

在该文件夹中查找图标中输入
%SystemRoot%\System32\imageres.dll
或者
%SystemRoot%\system32\SHELL32.dll

然后回车或者点击下面空白处,会出现图标,选择自己喜欢的图标即可。

5、拖拉该快捷方式将其锁定到任务栏中,现在只要点击该快捷方式就可以重现3D窗口切换画面了。

Windows 7下实现3D多窗口切换

Windows 7下实现3D多窗口切换的方法:

只需要同时按下Win+Ctrl+Tab可以了,简单吧。

Noah[2009-09-26 10:15 AM ]
要实现3D窗口切换,只需要2个键:win+Tab
楼主自己可以试下哦

pop补充:
还是有点小区别win+Tab是直接切换,Win+Ctrl+Tab切换时需要选择。

开启VMware支持3D加速的解决办法

用记事本打开虚拟机文件夹里面以.vmx结尾的文件,在末尾添加3行:

mks.enable3d = TRUE
svga.vramSize = 67108864
vmmouse.present = FALSE

然后,主菜单 Edit > Preferences,input标签。把Ungrab when cursor leaves window的钩去掉,这样就可以在VMWare里面使用3D加速了。

但是此时有些机器可能玩不了, 进入需要3D加速的软件会出现一片白色,此时你就需要应用以下的补丁

这个补丁是要替换在虚拟机系统下的
C:\WINDOWS\system32
如果虚拟机是2000系统的话就是C:\WINNT\system32

其中VMX_FB.DLL VMX_MODE.DLL拷贝到WINDOWS\system32
VMX_SVGA.SYS放在WINDOWS\system32\drivers目录下
VMX_SVGA.inf文件可以不需要

以上的文件是放在虚拟机的windows里啊,不是放在你自己的机器里。

补丁地址:
http://www.divshare.com/download/4482272-03b
http://www.zxcf.cn/uploadfile/rar/2007-5/2007515125425621.rar

Vmare官方原文:
Enabling Accelerated 3-D for a Virtual Machine
http://www.vmware.com/support/ws5/doc/ws_vidsound_d3d_enabling_vm.html

To enable a virtual machine for accelerated 3-D

1. Choose a virtual machine with Windows 2000 or XP guest operating system.
Note: Do not enable Direct3D on a virtual machine that is powered on or suspended.
2. Add the following to the

configuration (.vmx)
file for the virtual machine:
mks.enable3d = TRUE

This line enables accelerated 3-D on the host. It is required to support accelerated 3-D in the guest and also enables the host to accelerate 2-D portions of the guest display.
3. You may also add one or both of the following optional lines:
svga.vramSize = 67108864

This line 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.
vmmouse.present = FALSE

This line disables the absolute pointing device in the guest. Applications which require DirectInput relative mode need to turn off the absolute pointing device in the guest. In practice, this is only required for a certain class of full screen 3-D applications (for example, real-time games like first-person shooters).
Note: If you set the
vmmouse.present
option, you should also turn off the preference for motion ungrabbing in the Input tab of the Preferences settings dialog.
To turn off ungrabbing for
vmouse.present:

a. Choose Edit > Preferences.
b. Click Input.
c. Deselect Ungrab when cursor leaves window.