d3dx9: Implement D3DXPlaneTransformArray.

Vitaliy Margolen wine-devel at kievinfo.com
Thu Jul 24 14:30:52 CDT 2008


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.



More information about the wine-devel mailing list