DirectX9 多重采样

来源:互联网 发布:华讯网络系统有限公司 编辑:程序博客网 时间:2024/04/29 12:51

Multisampling

The D3DMULTISAMPLE_TYPE enumerated type consists of values that allow us to specify the level of multisampling of a surface. They are:

D3DMULTISAMPLE_NONE—Specifies nomultisampling

D3DMULTISAMPLE_1_SAMPLE…D3DMULTISAMPLE_16_SAMPLE—Specifiesmultisampling levels from 1 to 16

 

If you wish to include it, remember touse the IDirect3D9::CheckDeviceMultiSampleType method to verify that yourgraphics device supports the multisampling type that you wish to use and checkfor valid quality levels.

0 0