mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2025-12-31 17:02:02 +00:00
* SSEd HMM_MultiplyMat4 and HMM_Transpose. And added HMM_LinearCombineSSE
* Maybe Travis doesn't support SSE?
* Fix compile process so the SSE option is consistently defined
* Fix link error
* Documentation
* Added function prototype for operator ==
* Added != operator for hmm_vec2, hmm_vec3, hmm_vec4
* Add C versions of equality checks
Also made the C++ tests actually run...😳
* Update documentation
12 lines
150 B
Markdown
12 lines
150 B
Markdown
# Testing
|
|
|
|
You can compile and run the tests yourself by running:
|
|
|
|
```
|
|
make
|
|
./hmm_test_c
|
|
./hmm_test_c_no_sse
|
|
./hmm_test_cpp
|
|
./hmm_test_cpp_no_sse
|
|
```
|