本文主要是介绍DirectX9 多重采样,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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.
这篇关于DirectX9 多重采样的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!