Prefixed all functions

This commit is contained in:
StrangeZak
2016-05-20 19:52:17 -07:00
parent c9c60ba25b
commit 6a2fac6a00
3 changed files with 328 additions and 289 deletions

13
main.c
View File

@@ -4,8 +4,15 @@
int
main(void)
{
v2 VecOne = Vec2(1.0f, 1.0f);
v2 VecTwo = Vec2(3.0f, 3.0f);
hmm_mat4 MatrixOne = HMM_Mat4d(1.0f);
hmm_mat4 MatrixTwo = HMM_Mat4d(4.0f);
v2 Result = AddVec2(VecOne, VecTwo);
hmm_mat4 MatrixResult = HMM_MultiplyMat4(MatrixOne, MatrixTwo);
hmm_v2 VecOne = HMM_Vec2(1.0f, 1.0f);
hmm_v2 VecTwo = HMM_Vec2(3.0f, 3.0f);
hmm_v2 Result = HMM_AddVec2(VecOne, VecTwo);
return(0);
}