Merge branch '0.9.8'
This commit is contained in:
commit
b8077c1809
66
.travis.yml
66
.travis.yml
@ -36,51 +36,75 @@ script:
|
|||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest
|
- ctest
|
||||||
- cd ..
|
- cd ..
|
||||||
- mkdir ./build_simd_11
|
|
||||||
- cd ./build_simd_11
|
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
|
||||||
- cmake --build .
|
|
||||||
- ctest
|
|
||||||
- cd ..
|
|
||||||
- mkdir ./build_pure_98
|
- mkdir ./build_pure_98
|
||||||
- cd ./build_pure_98
|
- cd ./build_pure_98
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest
|
- ctest
|
||||||
- cd ..
|
- cd ..
|
||||||
- mkdir ./build_simd_98
|
|
||||||
- cd ./build_simd_98
|
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
|
||||||
- cmake --build .
|
|
||||||
- ctest
|
|
||||||
- cd ..
|
|
||||||
- mkdir ./build_pure_11_debug
|
- mkdir ./build_pure_11_debug
|
||||||
- cd ./build_pure_11_debug
|
- cd ./build_pure_11_debug
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_FORCE_PURE=ON ..
|
||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest
|
- ctest
|
||||||
- cd ..
|
- cd ..
|
||||||
- mkdir ./build_simd_11_debug
|
|
||||||
- cd ./build_simd_11_debug
|
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
|
||||||
- cmake --build .
|
|
||||||
- ctest
|
|
||||||
- cd ..
|
|
||||||
- mkdir ./build_pure_98_debug
|
- mkdir ./build_pure_98_debug
|
||||||
- cd ./build_pure_98_debug
|
- cd ./build_pure_98_debug
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_FORCE_PURE=ON ..
|
||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest
|
- ctest
|
||||||
- cd ..
|
- cd ..
|
||||||
|
- if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||||
|
- mkdir ./build_simd_11
|
||||||
|
- cd ./build_simd_11
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- mkdir ./build_simd_98
|
||||||
|
- cd ./build_simd_98
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- mkdir ./build_simd_11_debug
|
||||||
|
- cd ./build_simd_11_debug
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- mkdir ./build_simd_98_debug
|
||||||
|
- cd ./build_simd_98_debug
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_SSE3=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- else
|
||||||
|
- mkdir ./build_simd_11
|
||||||
|
- cd ./build_simd_11
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- mkdir ./build_simd_98
|
||||||
|
- cd ./build_simd_98
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Release -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
|
- mkdir ./build_simd_11_debug
|
||||||
|
- cd ./build_simd_11_debug
|
||||||
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_11=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
||||||
|
- cmake --build .
|
||||||
|
- ctest
|
||||||
|
- cd ..
|
||||||
- mkdir ./build_simd_98_debug
|
- mkdir ./build_simd_98_debug
|
||||||
- cd ./build_simd_98_debug
|
- cd ./build_simd_98_debug
|
||||||
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
- cmake -DCMAKE_CXX_COMPILER=$COMPILER -DCMAKE_BUILD_TYPE=Debug -DGLM_TEST_ENABLE=ON -DGLM_TEST_ENABLE_CXX_98=ON -DGLM_TEST_ENABLE_SIMD_AVX=ON ..
|
||||||
- cmake --build .
|
- cmake --build .
|
||||||
- ctest
|
- ctest
|
||||||
- cd ..
|
- cd ..
|
||||||
|
- fi
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -88,6 +88,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate)
|
|||||||
- Fixed GTC_packing test failing on GCC x86 due to denorms #212 #577
|
- Fixed GTC_packing test failing on GCC x86 due to denorms #212 #577
|
||||||
- Fixed POPCNT optimization build in Clang #512
|
- Fixed POPCNT optimization build in Clang #512
|
||||||
- Fixed intersectRayPlane returns true in parallel case #578
|
- Fixed intersectRayPlane returns true in parallel case #578
|
||||||
|
- Fixed GCC 6.2 compiler warnings #580
|
||||||
|
|
||||||
---
|
---
|
||||||
### [GLM 0.9.8.3](https://github.com/g-truc/glm/releases/tag/0.9.8.3) - 2016-11-12
|
### [GLM 0.9.8.3](https://github.com/g-truc/glm/releases/tag/0.9.8.3) - 2016-11-12
|
||||||
|
Loading…
Reference in New Issue
Block a user