I recently added some DirectX code to my program, and now my double data type variables only have the range/resolution of a float (.. or atleast less range/resolution than they used too). If I remove the direct3D initialization - "Direct3DCreate9(D3D_SDK_VERSION)" - the problem goes away. Any insight? Thanks.
|
|
Direct3D will modify the FPU state to force single precision mode. If you want to preserve double-precision mode, use http://msdn.microsoft.com/en-us/library/bb172527(VS.85).aspx |
||
|
|
|
|
As explained in this blog entry: Direct3D and the FPU, you can tell Direct3D not to change the FPU mode to single precision:
|
||
|
|
