Im using directxtutorial.com tutorial.. Im getting errors in these lines :
D3DXMatrixLookAtLH(&matView,
&D3DXVECTOR3 (0.0f, 8.0f, 25.0f), // the camera position //error
&D3DXVECTOR3 (0.0f, 0.0f, 0.0f), // the look-at position //error
&D3DXVECTOR3 (0.0f, 1.0f, 0.0f)); // the up direction //error
c++\test 1\test1\main.cpp|145|error: taking address of temporary [-fpermissive]
In all three of them. What do they mean and how can i fix them? I was googling for answers, but none has those errors in these lines. Thank you!