Added forward declarations (glm/fwd.hpp) for faster compilations, issue #56

master
Christophe Riccio ago%!(EXTRA string=12 years)
parent ea09100144
commit afb7779baf
  1. 21
      glm/fwd.hpp
  2. 1
      glm/glm.hpp
  3. 1
      glm/gtc/random.inl
  4. 1
      readme.txt

@ -31,27 +31,10 @@
#include "core/type_int.hpp"
#include "core/type_float.hpp"
#include "core/type.hpp"
namespace glm{
namespace detail
namespace glm
{
class half;
template <typename T> struct tvec1;
template <typename T> struct tvec2;
template <typename T> struct tvec3;
template <typename T> struct tvec4;
template <typename T> struct tmat2x2;
template <typename T> struct tmat2x3;
template <typename T> struct tmat2x4;
template <typename T> struct tmat3x2;
template <typename T> struct tmat3x3;
template <typename T> struct tmat3x4;
template <typename T> struct tmat4x2;
template <typename T> struct tmat4x3;
template <typename T> struct tmat4x4;
}//namespace detail
}//namespace glm

@ -95,7 +95,6 @@
# pragma message("GLM: Core library included")
#endif//GLM_MESSAGE
#include "./core/_detail.hpp"
#include "./core/_vectorize.hpp"
#include "./core/type_half.hpp"

@ -26,6 +26,7 @@
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
#include <cstdlib>
#include <ctime>
#include <cassert>

@ -39,6 +39,7 @@ http://glm.g-truc.net/glm.pdf
================================================================================
GLM 0.9.5.0: 2013-XX-XX
--------------------------------------------------------------------------------
- Added forward declarations (glm/fwd.hpp) for faster compilations
- Improved Intel Compiler detection
- Added bitfieldInterleave and _mm_bit_interleave_si128 functions
- Added GTX_scalar_relational

Loading…
Cancel
Save