erebus
changeset 45:bab25c0ce337
started gmath conversion
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 29 Dec 2015 12:19:53 +0200 |
parents | a2afaf8af09b |
children | c4d48a21bc4a 4b91c9a501d8 |
files | liberebus/Makefile liberebus/src/bvol.h liberebus/src/camera.h liberebus/src/color.h liberebus/src/erebus_impl.h liberebus/src/geomobj.cc liberebus/src/object.h liberebus/src/snode.h |
diffstat | 8 files changed, 8 insertions(+), 8 deletions(-) [+] |
line diff
1.1 --- a/liberebus/Makefile Fri Sep 18 06:47:41 2015 +0300 1.2 +++ b/liberebus/Makefile Tue Dec 29 12:19:53 2015 +0200 1.3 @@ -9,7 +9,7 @@ 1.4 api_minor = 1 1.5 1.6 CXXFLAGS = -std=c++11 -pthread -pedantic $(warn) $(dbg) $(opt) $(pic) 1.7 -LDFLAGS = -pthread -lvmath -limago -lm 1.8 +LDFLAGS = -pthread -lgmath -limago -lm 1.9 1.10 ifeq ($(shell uname -s), Darwin) 1.11 shared = -dynamiclib
2.1 --- a/liberebus/src/bvol.h Fri Sep 18 06:47:41 2015 +0300 2.2 +++ b/liberebus/src/bvol.h Tue Dec 29 12:19:53 2015 +0200 2.3 @@ -1,7 +1,7 @@ 2.4 #ifndef BVOL_H_ 2.5 #define BVOL_H_ 2.6 2.7 -#include "vmath/ray.h" 2.8 +#include <gmath/gmath.h> 2.9 2.10 class AABox { 2.11 public:
3.1 --- a/liberebus/src/camera.h Fri Sep 18 06:47:41 2015 +0300 3.2 +++ b/liberebus/src/camera.h Tue Dec 29 12:19:53 2015 +0200 3.3 @@ -1,7 +1,7 @@ 3.4 #ifndef CAMERA_H_ 3.5 #define CAMERA_H_ 3.6 3.7 -#include "vmath/vmath.h" 3.8 +#include <gmath/gmath.h> 3.9 3.10 class Camera { 3.11 protected:
4.1 --- a/liberebus/src/color.h Fri Sep 18 06:47:41 2015 +0300 4.2 +++ b/liberebus/src/color.h Tue Dec 29 12:19:53 2015 +0200 4.3 @@ -1,7 +1,7 @@ 4.4 #ifndef COLOR_H_ 4.5 #define COLOR_H_ 4.6 4.7 -#include "vmath/vector.h" 4.8 +#include <gmath/gmath.h> 4.9 4.10 typedef Vector4 Color; 4.11
5.1 --- a/liberebus/src/erebus_impl.h Fri Sep 18 06:47:41 2015 +0300 5.2 +++ b/liberebus/src/erebus_impl.h Tue Dec 29 12:19:53 2015 +0200 5.3 @@ -2,7 +2,7 @@ 5.4 #define EREBUS_IMPL_H_ 5.5 5.6 #include <vector> 5.7 -#include <vmath/vmath.h> 5.8 +#include <gmath/gmath.h> 5.9 #include "erebus.h" 5.10 #include "image.h" 5.11 #include "scene.h"
6.1 --- a/liberebus/src/geomobj.cc Fri Sep 18 06:47:41 2015 +0300 6.2 +++ b/liberebus/src/geomobj.cc Tue Dec 29 12:19:53 2015 +0200 6.3 @@ -1,6 +1,6 @@ 6.4 #include <math.h> 6.5 #include <float.h> 6.6 -#include <vmath/vmath.h> 6.7 +#include <gmath/gmath.h> 6.8 #include "geomobj.h" 6.9 #include "erebus_impl.h" 6.10