dx9/dx10 corrispondence

Started by
2 comments, last by MJP 14 years, 2 months ago
hy. I'm search for documentation on the dx9/dx10 corrispondence enums and costants ,exist? For ex : i have an example with: D3DTEXF_POINT in dx9 what is the corrispondence in dx10? Thanks.
Advertisement
D3D10 encapsulates such states as state objects.

For example, texture filtering settings are a part of the ID3D10SamplerState interface, backing object of which you can create by using ID3D10Device::CreateSamplerState. This method takes in a D3D10_SAMPLER_DESC, one field of which is the texture filtering setting.

There is no guarantee at all that the enumerations' numerical values are equivalent between D3D9 and D3D10. However, all D3D10 enumerations are documented in the SDK - for example, if you go to the docs on D3D10_FILTER, you should find the other enums easily too.

Niko Suni

thanks.
and for the interfaces in dx 10?
for example , IDirect3DBaseTexture9 in dx9 at what corresponds in dx 10?
, there is another simple corripondence like state objects?
Thanks.
See this.

This topic is closed to new replies.

Advertisement