I'm trying to implement some direct3d functions, more precisely the GetImageInfoFromFile* ones.
These are present in directX 8 and in d3dx9_xx.dll
I wondered what is the best way to do this : 1)Implementing it in d3dx8.dll and forward everything to this one. 2) Make some useful functions in wined3d and then use them from d3dx8. 3) Implement them directly in wined3d, forwarding everything to it. 4) An other way ?
Cheers. Jérôme
___________________________________________________________________________ Yahoo! Mail réinvente le mail ! Découvrez le nouveau Yahoo! Mail et son interface révolutionnaire. http://fr.mail.yahoo.com
Am Sonntag, 9. März 2008 11:48:08 schrieb Jérôme Gardou:
I'm trying to implement some direct3d functions, more precisely the GetImageInfoFromFile* ones.
These are present in directX 8 and in d3dx9_xx.dll
I wondered what is the best way to do this : 1)Implementing it in d3dx8.dll and forward everything to this one.
This is the way that was chosen for the other functions, so I think it is the way to go in this case as well