0.9.9 API documenation
hash.hpp
Go to the documentation of this file.
1 
13 #pragma once
14 
15 #ifndef GLM_ENABLE_EXPERIMENTAL
16 # error "GLM: GLM_GTX_hash is an experimetal extension and may change in the future. Use #define GLM_ENABLE_EXPERIMENTAL before including it, if you really want to use it."
17 #endif
18 
19 #include <functional>
20 
21 #include "../vec2.hpp"
22 #include "../vec3.hpp"
23 #include "../vec4.hpp"
24 #include "../gtc/vec1.hpp"
25 
26 #include "../gtc/quaternion.hpp"
27 #include "../gtx/dual_quaternion.hpp"
28 
29 #include "../mat2x2.hpp"
30 #include "../mat2x3.hpp"
31 #include "../mat2x4.hpp"
32 
33 #include "../mat3x2.hpp"
34 #include "../mat3x3.hpp"
35 #include "../mat3x4.hpp"
36 
37 #include "../mat4x2.hpp"
38 #include "../mat4x3.hpp"
39 #include "../mat4x4.hpp"
40 
41 #if !GLM_HAS_CXX11_STL
42 # error "GLM_GTX_hash requires C++11 standard library support"
43 #endif
44 
45 namespace std
46 {
47  template <typename T, glm::precision P>
48  struct hash<glm::tvec1<T,P> >
49  {
50  GLM_FUNC_DECL size_t operator()(glm::tvec1<T, P> const & v) const;
51  };
52 
53  template <typename T, glm::precision P>
54  struct hash<glm::tvec2<T,P> >
55  {
56  GLM_FUNC_DECL size_t operator()(glm::tvec2<T, P> const & v) const;
57  };
58 
59  template <typename T, glm::precision P>
60  struct hash<glm::tvec3<T,P> >
61  {
62  GLM_FUNC_DECL size_t operator()(glm::tvec3<T, P> const & v) const;
63  };
64 
65  template <typename T, glm::precision P>
66  struct hash<glm::tvec4<T,P> >
67  {
68  GLM_FUNC_DECL size_t operator()(glm::tvec4<T, P> const & v) const;
69  };
70 
71  template <typename T, glm::precision P>
72  struct hash<glm::tquat<T,P>>
73  {
74  GLM_FUNC_DECL size_t operator()(glm::tquat<T, P> const & q) const;
75  };
76 
77  template <typename T, glm::precision P>
78  struct hash<glm::tdualquat<T,P> >
79  {
80  GLM_FUNC_DECL size_t operator()(glm::tdualquat<T,P> const & q) const;
81  };
82 
83  template <typename T, glm::precision P>
84  struct hash<glm::tmat2x2<T,P> >
85  {
86  GLM_FUNC_DECL size_t operator()(glm::tmat2x2<T,P> const & m) const;
87  };
88 
89  template <typename T, glm::precision P>
90  struct hash<glm::tmat2x3<T,P> >
91  {
92  GLM_FUNC_DECL size_t operator()(glm::tmat2x3<T,P> const & m) const;
93  };
94 
95  template <typename T, glm::precision P>
96  struct hash<glm::tmat2x4<T,P> >
97  {
98  GLM_FUNC_DECL size_t operator()(glm::tmat2x4<T,P> const & m) const;
99  };
100 
101  template <typename T, glm::precision P>
102  struct hash<glm::tmat3x2<T,P> >
103  {
104  GLM_FUNC_DECL size_t operator()(glm::tmat3x2<T,P> const & m) const;
105  };
106 
107  template <typename T, glm::precision P>
108  struct hash<glm::tmat3x3<T,P> >
109  {
110  GLM_FUNC_DECL size_t operator()(glm::tmat3x3<T,P> const & m) const;
111  };
112 
113  template <typename T, glm::precision P>
114  struct hash<glm::tmat3x4<T,P> >
115  {
116  GLM_FUNC_DECL size_t operator()(glm::tmat3x4<T,P> const & m) const;
117  };
118 
119  template <typename T, glm::precision P>
120  struct hash<glm::tmat4x2<T,P> >
121  {
122  GLM_FUNC_DECL size_t operator()(glm::tmat4x2<T,P> const & m) const;
123  };
124 
125  template <typename T, glm::precision P>
126  struct hash<glm::tmat4x3<T,P> >
127  {
128  GLM_FUNC_DECL size_t operator()(glm::tmat4x3<T,P> const & m) const;
129  };
130 
131  template <typename T, glm::precision P>
132  struct hash<glm::tmat4x4<T,P> >
133  {
134  GLM_FUNC_DECL size_t operator()(glm::tmat4x4<T,P> const & m) const;
135  };
136 } // namespace std
137 
138 #include "hash.inl"
Definition: hash.hpp:45
Definition: _noise.hpp:11