[source lang="cpp"] D3DXMATRIXA16 matWorld; D3DXMatrixTranslation( &matWorld, -89.0f, 0.0f, -132.0f );[/source]
Im calling that code with 2 project one result is : http://prntscr.com/f7nie
and another project result is : http://prntscr.com/f7nkt
how can its possible , first result wrong i think. anybody can explain it for me ?
-Thanks
5 replies to this topic
Ad:
#4 Members - Reputation: 526
Posted 11 September 2012 - 04:28 AM
Yes, it looks strange 
Have you installed Service Pack for your Visual Studio?
Please, consider using XNAMath/DirectXMath v 2.4, 2.5 or 3.0.
These samples should work with D3DXMATRIXA16. Both parameters are pointers to D3DXMATRIX.
Another thing, maybe something writes to your matrix because of a bad pointer, matrix is destroyed or something similar.
Have you installed Service Pack for your Visual Studio?
Please, consider using XNAMath/DirectXMath v 2.4, 2.5 or 3.0.
These samples should work with D3DXMATRIXA16. Both parameters are pointers to D3DXMATRIX.
Another thing, maybe something writes to your matrix because of a bad pointer, matrix is destroyed or something similar.
Edited by kubera, 11 September 2012 - 04:28 AM.
#5 Crossbones+ - Reputation: 1154
Posted 11 September 2012 - 06:06 AM
If you don't initialise a variable in C++ it will show you values that are currently available in that particular memory locations in release mode. Also for us to be helpful please mention to use where the breakpoint is in the screenshots you show.
The only real difference between D3DXMATRIXA16 inherits from D3DXMATRIX, and adds no variables but adds allocation alignment.
The only real difference between D3DXMATRIXA16 inherits from D3DXMATRIX, and adds no variables but adds allocation alignment.
#6 Members - Reputation: 120
Posted 11 September 2012 - 03:24 PM
Hello,
Thanks for answers. I solve it, its about release/debug. when with release result is http://prntscr.com/f7nkt and with debug http://prntscr.com/f7nie
Sorry for delay
Thanks for answers. I solve it, its about release/debug. when with release result is http://prntscr.com/f7nkt and with debug http://prntscr.com/f7nie
Sorry for delay






