Re: d3dx9: Implement D3DXPlaneTransformArray.
24 Jul
2008
24 Jul
'08
2:30 p.m.
Philip Nilsson wrote:
Thanks to joaopa for pointing out that I forgot this function.
+D3DXPLANE* WINAPI D3DXPlaneTransformArray( + D3DXPLANE* out, UINT outstride, CONST D3DXPLANE* in, UINT instride, + CONST D3DXMATRIX* matrix, UINT elements) +{ + unsigned int i; + TRACE("\n"); + for (i = 0; i < elements; ++i) {
Please don't mix and match win types and C types. If it says "UINT" in the function declaration then make the iterator "UINT i" as well. Vitaliy.
6349
Age (days ago)
6349
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vitaliy Margolen