summaryrefslogtreecommitdiffstats
path: root/sdl/math3d.h
diff options
context:
space:
mode:
Diffstat (limited to 'sdl/math3d.h')
-rw-r--r--sdl/math3d.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/sdl/math3d.h b/sdl/math3d.h
index 510c017..c337195 100644
--- a/sdl/math3d.h
+++ b/sdl/math3d.h
@@ -24,13 +24,12 @@ typedef float M3DVector2f[2]; /* vector of 2 floats */
/* math function prototypes */
void m3dFindNormalf(M3DVector3f, const M3DVector3f, const M3DVector3f,
const M3DVector3f);
-void m3dLoadIdentity33f(M3DMatrix33f m);
+void m3dLoadIdentity33f(M3DMatrix33f);
void m3dLoadIdentity44f(M3DMatrix44f);
-void m3dGetPlaneEquationf(M3DVector4f planeEq, const M3DVector3f p1,
- const M3DVector3f p2, const M3DVector3f p3);
+void m3dGetPlaneEquationf(M3DVector4f, const M3DVector3f,
+ const M3DVector3f, const M3DVector3f);
void m3dRotationMatrix44f(M3DMatrix44f, float, float, float, float);
-void m3dMakePlanarShadowMatrixf(M3DMatrix44f proj, const M3DVector4f planeEq,
- const M3DVector3f vLightPos);
+void m3dMakePlanarShadowMatrixf(M3DMatrix44f, const M3DVector4f, const M3DVector3f);
void m3dMatrixMultiply44f(M3DMatrix44f, const M3DMatrix44f, const M3DMatrix44f);
static inline void m3dCrossProductf(M3DVector3f result, const M3DVector3f u,