From b4610706c096313a7c8c938a0c3afb011da23bbf Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 12 Mar 2012 14:04:19 +0000 Subject: [PATCH] math: move half.h into the public headers. --- src/Makefile.am | 4 ++-- src/core.h | 2 +- src/{ => lol/math}/half.h | 0 src/lol/math/vector.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename src/{ => lol/math}/half.h (100%) diff --git a/src/Makefile.am b/src/Makefile.am index 585ba228..3b66c706 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,11 +9,11 @@ liblol_a_SOURCES = \ timer.cpp timer.h bitfield.h profiler.cpp profiler.h input.h input.cpp \ world.cpp world.h sample.cpp sample.h sampler.cpp sampler.h \ text.cpp text.h emitter.cpp emitter.h numeric.h hash.cpp hash.h \ - worldentity.cpp worldentity.h gradient.cpp gradient.h half.cpp half.h \ + worldentity.cpp worldentity.h gradient.cpp gradient.h half.cpp \ platform.cpp platform.h sprite.cpp sprite.h trig.cpp trig.h \ \ lol/unit.h \ - lol/math/vector.h lol/math/real.h lol/math/remez.h \ + lol/math/vector.h lol/math/half.h lol/math/real.h lol/math/remez.h \ \ application/application.cpp application/application.h \ eglapp.cpp eglapp.h \ diff --git a/src/core.h b/src/core.h index 19781e9f..5f566393 100644 --- a/src/core.h +++ b/src/core.h @@ -63,7 +63,7 @@ static inline int isnan(float f) // Base types #include "trig.h" -#include "half.h" +#include "lol/math/half.h" #include "lol/math/real.h" #include "lol/math/vector.h" #include "numeric.h" diff --git a/src/half.h b/src/lol/math/half.h similarity index 100% rename from src/half.h rename to src/lol/math/half.h diff --git a/src/lol/math/vector.h b/src/lol/math/vector.h index e24d938b..3f1eef86 100644 --- a/src/lol/math/vector.h +++ b/src/lol/math/vector.h @@ -22,7 +22,7 @@ # include #endif -#include "half.h" +#include "lol/math/half.h" #include "lol/math/real.h" namespace lol