0.9.6
matrix_integer.hpp
Go to the documentation of this file.
1 
41 #pragma once
42 
43 // Dependency:
44 #include "../mat2x2.hpp"
45 #include "../mat2x3.hpp"
46 #include "../mat2x4.hpp"
47 #include "../mat3x2.hpp"
48 #include "../mat3x3.hpp"
49 #include "../mat3x4.hpp"
50 #include "../mat4x2.hpp"
51 #include "../mat4x3.hpp"
52 #include "../mat4x4.hpp"
53 
54 #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED))
55 # pragma message("GLM: GLM_GTC_matrix_integer extension included")
56 #endif
57 
58 namespace glm
59 {
62 
65  typedef tmat2x2<int, highp> highp_imat2;
66 
69  typedef tmat3x3<int, highp> highp_imat3;
70 
73  typedef tmat4x4<int, highp> highp_imat4;
74 
77  typedef tmat2x2<int, highp> highp_imat2x2;
78 
81  typedef tmat2x3<int, highp> highp_imat2x3;
82 
85  typedef tmat2x4<int, highp> highp_imat2x4;
86 
89  typedef tmat3x2<int, highp> highp_imat3x2;
90 
93  typedef tmat3x3<int, highp> highp_imat3x3;
94 
97  typedef tmat3x4<int, highp> highp_imat3x4;
98 
101  typedef tmat4x2<int, highp> highp_imat4x2;
102 
105  typedef tmat4x3<int, highp> highp_imat4x3;
106 
109  typedef tmat4x4<int, highp> highp_imat4x4;
110 
111 
114  typedef tmat2x2<int, mediump> mediump_imat2;
115 
118  typedef tmat3x3<int, mediump> mediump_imat3;
119 
122  typedef tmat4x4<int, mediump> mediump_imat4;
123 
124 
127  typedef tmat2x2<int, mediump> mediump_imat2x2;
128 
131  typedef tmat2x3<int, mediump> mediump_imat2x3;
132 
135  typedef tmat2x4<int, mediump> mediump_imat2x4;
136 
139  typedef tmat3x2<int, mediump> mediump_imat3x2;
140 
143  typedef tmat3x3<int, mediump> mediump_imat3x3;
144 
147  typedef tmat3x4<int, mediump> mediump_imat3x4;
148 
151  typedef tmat4x2<int, mediump> mediump_imat4x2;
152 
155  typedef tmat4x3<int, mediump> mediump_imat4x3;
156 
159  typedef tmat4x4<int, mediump> mediump_imat4x4;
160 
161 
164  typedef tmat2x2<int, lowp> lowp_imat2;
165 
168  typedef tmat3x3<int, lowp> lowp_imat3;
169 
172  typedef tmat4x4<int, lowp> lowp_imat4;
173 
174 
177  typedef tmat2x2<int, lowp> lowp_imat2x2;
178 
181  typedef tmat2x3<int, lowp> lowp_imat2x3;
182 
185  typedef tmat2x4<int, lowp> lowp_imat2x4;
186 
189  typedef tmat3x2<int, lowp> lowp_imat3x2;
190 
193  typedef tmat3x3<int, lowp> lowp_imat3x3;
194 
197  typedef tmat3x4<int, lowp> lowp_imat3x4;
198 
201  typedef tmat4x2<int, lowp> lowp_imat4x2;
202 
205  typedef tmat4x3<int, lowp> lowp_imat4x3;
206 
209  typedef tmat4x4<int, lowp> lowp_imat4x4;
210 
211 
214  typedef tmat2x2<uint, highp> highp_umat2;
215 
218  typedef tmat3x3<uint, highp> highp_umat3;
219 
222  typedef tmat4x4<uint, highp> highp_umat4;
223 
226  typedef tmat2x2<uint, highp> highp_umat2x2;
227 
230  typedef tmat2x3<uint, highp> highp_umat2x3;
231 
234  typedef tmat2x4<uint, highp> highp_umat2x4;
235 
238  typedef tmat3x2<uint, highp> highp_umat3x2;
239 
242  typedef tmat3x3<uint, highp> highp_umat3x3;
243 
246  typedef tmat3x4<uint, highp> highp_umat3x4;
247 
250  typedef tmat4x2<uint, highp> highp_umat4x2;
251 
254  typedef tmat4x3<uint, highp> highp_umat4x3;
255 
258  typedef tmat4x4<uint, highp> highp_umat4x4;
259 
260 
263  typedef tmat2x2<uint, mediump> mediump_umat2;
264 
267  typedef tmat3x3<uint, mediump> mediump_umat3;
268 
271  typedef tmat4x4<uint, mediump> mediump_umat4;
272 
273 
276  typedef tmat2x2<uint, mediump> mediump_umat2x2;
277 
280  typedef tmat2x3<uint, mediump> mediump_umat2x3;
281 
284  typedef tmat2x4<uint, mediump> mediump_umat2x4;
285 
288  typedef tmat3x2<uint, mediump> mediump_umat3x2;
289 
292  typedef tmat3x3<uint, mediump> mediump_umat3x3;
293 
296  typedef tmat3x4<uint, mediump> mediump_umat3x4;
297 
300  typedef tmat4x2<uint, mediump> mediump_umat4x2;
301 
304  typedef tmat4x3<uint, mediump> mediump_umat4x3;
305 
308  typedef tmat4x4<uint, mediump> mediump_umat4x4;
309 
310 
313  typedef tmat2x2<uint, lowp> lowp_umat2;
314 
317  typedef tmat3x3<uint, lowp> lowp_umat3;
318 
321  typedef tmat4x4<uint, lowp> lowp_umat4;
322 
323 
326  typedef tmat2x2<uint, lowp> lowp_umat2x2;
327 
330  typedef tmat2x3<uint, lowp> lowp_umat2x3;
331 
334  typedef tmat2x4<uint, lowp> lowp_umat2x4;
335 
338  typedef tmat3x2<uint, lowp> lowp_umat3x2;
339 
342  typedef tmat3x3<uint, lowp> lowp_umat3x3;
343 
346  typedef tmat3x4<uint, lowp> lowp_umat3x4;
347 
350  typedef tmat4x2<uint, lowp> lowp_umat4x2;
351 
354  typedef tmat4x3<uint, lowp> lowp_umat4x3;
355 
358  typedef tmat4x4<uint, lowp> lowp_umat4x4;
359 
360 #if(defined(GLM_PRECISION_HIGHP_INT))
361  typedef highp_imat2 imat2;
362  typedef highp_imat3 imat3;
363  typedef highp_imat4 imat4;
364  typedef highp_imat2x2 imat2x2;
365  typedef highp_imat2x3 imat2x3;
366  typedef highp_imat2x4 imat2x4;
367  typedef highp_imat3x2 imat3x2;
368  typedef highp_imat3x3 imat3x3;
369  typedef highp_imat3x4 imat3x4;
370  typedef highp_imat4x2 imat4x2;
371  typedef highp_imat4x3 imat4x3;
372  typedef highp_imat4x4 imat4x4;
373 #elif(defined(GLM_PRECISION_LOWP_INT))
374  typedef lowp_imat2 imat2;
375  typedef lowp_imat3 imat3;
376  typedef lowp_imat4 imat4;
377  typedef lowp_imat2x2 imat2x2;
378  typedef lowp_imat2x3 imat2x3;
379  typedef lowp_imat2x4 imat2x4;
380  typedef lowp_imat3x2 imat3x2;
381  typedef lowp_imat3x3 imat3x3;
382  typedef lowp_imat3x4 imat3x4;
383  typedef lowp_imat4x2 imat4x2;
384  typedef lowp_imat4x3 imat4x3;
385  typedef lowp_imat4x4 imat4x4;
386 #else //if(defined(GLM_PRECISION_MEDIUMP_INT))
387 
390  typedef mediump_imat2 imat2;
391 
394  typedef mediump_imat3 imat3;
395 
398  typedef mediump_imat4 imat4;
399 
402  typedef mediump_imat2x2 imat2x2;
403 
406  typedef mediump_imat2x3 imat2x3;
407 
410  typedef mediump_imat2x4 imat2x4;
411 
414  typedef mediump_imat3x2 imat3x2;
415 
418  typedef mediump_imat3x3 imat3x3;
419 
422  typedef mediump_imat3x4 imat3x4;
423 
426  typedef mediump_imat4x2 imat4x2;
427 
430  typedef mediump_imat4x3 imat4x3;
431 
434  typedef mediump_imat4x4 imat4x4;
435 #endif//GLM_PRECISION
436 
437 #if(defined(GLM_PRECISION_HIGHP_UINT))
438  typedef highp_umat2 umat2;
439  typedef highp_umat3 umat3;
440  typedef highp_umat4 umat4;
441  typedef highp_umat2x2 umat2x2;
442  typedef highp_umat2x3 umat2x3;
443  typedef highp_umat2x4 umat2x4;
444  typedef highp_umat3x2 umat3x2;
445  typedef highp_umat3x3 umat3x3;
446  typedef highp_umat3x4 umat3x4;
447  typedef highp_umat4x2 umat4x2;
448  typedef highp_umat4x3 umat4x3;
449  typedef highp_umat4x4 umat4x4;
450 #elif(defined(GLM_PRECISION_LOWP_UINT))
451  typedef lowp_umat2 umat2;
452  typedef lowp_umat3 umat3;
453  typedef lowp_umat4 umat4;
454  typedef lowp_umat2x2 umat2x2;
455  typedef lowp_umat2x3 umat2x3;
456  typedef lowp_umat2x4 umat2x4;
457  typedef lowp_umat3x2 umat3x2;
458  typedef lowp_umat3x3 umat3x3;
459  typedef lowp_umat3x4 umat3x4;
460  typedef lowp_umat4x2 umat4x2;
461  typedef lowp_umat4x3 umat4x3;
462  typedef lowp_umat4x4 umat4x4;
463 #else //if(defined(GLM_PRECISION_MEDIUMP_UINT))
464 
467  typedef mediump_umat2 umat2;
468 
471  typedef mediump_umat3 umat3;
472 
475  typedef mediump_umat4 umat4;
476 
479  typedef mediump_umat2x2 umat2x2;
480 
483  typedef mediump_umat2x3 umat2x3;
484 
487  typedef mediump_umat2x4 umat2x4;
488 
491  typedef mediump_umat3x2 umat3x2;
492 
495  typedef mediump_umat3x3 umat3x3;
496 
499  typedef mediump_umat3x4 umat3x4;
500 
503  typedef mediump_umat4x2 umat4x2;
504 
507  typedef mediump_umat4x3 umat4x3;
508 
511  typedef mediump_umat4x4 umat4x4;
512 #endif//GLM_PRECISION
513 
515 }//namespace glm
tmat4x2< int, highp > highp_imat4x2
High-precision signed integer 4x2 matrix.
tmat4x4< int, highp > highp_imat4x4
High-precision signed integer 4x4 matrix.
tmat3x2< int, mediump > mediump_imat3x2
Medium-precision signed integer 3x2 matrix.
tmat2x3< int, highp > highp_imat2x3
High-precision signed integer 2x3 matrix.
tmat4x4< int, highp > highp_imat4
High-precision signed integer 4x4 matrix.
tmat3x4< int, highp > highp_imat3x4
High-precision signed integer 3x4 matrix.
tmat3x2< uint, highp > highp_umat3x2
High-precision unsigned integer 3x2 matrix.
tmat3x3< int, lowp > lowp_imat3
Low-precision signed integer 3x3 matrix.
tmat3x4< int, lowp > lowp_imat3x4
Low-precision signed integer 3x4 matrix.
tmat2x2< int, mediump > mediump_imat2x2
Medium-precision signed integer 2x2 matrix.
tmat3x2< int, highp > highp_imat3x2
High-precision signed integer 3x2 matrix.
mediump_umat4x4 umat4x4
Unsigned integer 4x4 matrix.
tmat4x2< uint, lowp > lowp_umat4x2
Low-precision unsigned integer 4x2 matrix.
tmat3x2< uint, mediump > mediump_umat3x2
Medium-precision unsigned integer 3x2 matrix.
mediump_imat4 imat4
Signed integer 4x4 matrix.
mediump_imat2x3 imat2x3
Signed integer 2x3 matrix.
mediump_umat3 umat3
Unsigned integer 3x3 matrix.
tmat2x3< uint, lowp > lowp_umat2x3
Low-precision unsigned integer 2x3 matrix.
mediump_umat4x2 umat4x2
Unsigned integer 4x2 matrix.
mediump_imat3 imat3
Signed integer 3x3 matrix.
mediump_umat2x3 umat2x3
Unsigned integer 2x3 matrix.
tmat4x4< uint, highp > highp_umat4
High-precision unsigned integer 4x4 matrix.
tmat3x2< int, lowp > lowp_imat3x2
Low-precision signed integer 3x2 matrix.
tmat3x3< uint, lowp > lowp_umat3
Low-precision unsigned integer 3x3 matrix.
mediump_umat2 umat2
Unsigned integer 2x2 matrix.
tmat2x2< int, highp > highp_imat2x2
High-precision signed integer 2x2 matrix.
tmat2x4< uint, highp > highp_umat2x4
High-precision unsigned integer 2x4 matrix.
tmat2x4< int, mediump > mediump_imat2x4
Medium-precision signed integer 2x4 matrix.
tmat3x3< int, mediump > mediump_imat3
Medium-precision signed integer 3x3 matrix.
mediump_imat3x4 imat3x4
Signed integer 3x4 matrix.
mediump_imat2x2 imat2x2
Signed integer 2x2 matrix.
tmat2x2< uint, mediump > mediump_umat2x2
Medium-precision unsigned integer 2x2 matrix.
tmat4x4< uint, mediump > mediump_umat4
Medium-precision unsigned integer 4x4 matrix.
tmat3x3< uint, highp > highp_umat3x3
High-precision unsigned integer 3x3 matrix.
tmat3x3< int, highp > highp_imat3x3
High-precision signed integer 3x3 matrix.
tmat3x4< uint, lowp > lowp_umat3x4
Low-precision unsigned integer 3x4 matrix.
tmat2x2< uint, highp > highp_umat2
High-precision unsigned integer 2x2 matrix.
tmat2x3< int, mediump > mediump_imat2x3
Medium-precision signed integer 2x3 matrix.
mediump_umat2x2 umat2x2
Unsigned integer 2x2 matrix.
tmat3x4< uint, highp > highp_umat3x4
High-precision unsigned integer 3x4 matrix.
tmat2x3< int, lowp > lowp_imat2x3
Low-precision signed integer 2x3 matrix.
tmat2x2< int, lowp > lowp_imat2
Low-precision signed integer 2x2 matrix.
tmat4x3< uint, lowp > lowp_umat4x3
Low-precision unsigned integer 4x3 matrix.
tmat4x2< uint, mediump > mediump_umat4x2
Medium-precision unsigned integer 4x2 matrix.
tmat2x2< uint, lowp > lowp_umat2
Low-precision unsigned integer 2x2 matrix.
tmat4x3< uint, mediump > mediump_umat4x3
Medium-precision unsigned integer 4x3 matrix.
tmat4x4< int, mediump > mediump_imat4x4
Medium-precision signed integer 4x4 matrix.
tmat2x3< uint, mediump > mediump_umat2x3
Medium-precision unsigned integer 2x3 matrix.
tmat2x2< uint, highp > highp_umat2x2
High-precision unsigned integer 2x2 matrix.
tmat3x3< uint, highp > highp_umat3
High-precision unsigned integer 3x3 matrix.
tmat2x4< int, lowp > lowp_imat2x4
Low-precision signed integer 2x4 matrix.
tmat3x4< uint, mediump > mediump_umat3x4
Medium-precision unsigned integer 3x4 matrix.
tmat4x3< int, mediump > mediump_imat4x3
Medium-precision signed integer 4x3 matrix.
tmat3x3< uint, lowp > lowp_umat3x3
Low-precision unsigned integer 3x3 matrix.
tmat4x4< uint, mediump > mediump_umat4x4
Medium-precision unsigned integer 4x4 matrix.
mediump_umat2x4 umat2x4
Unsigned integer 2x4 matrix.
tmat2x4< int, highp > highp_imat2x4
High-precision signed integer 2x4 matrix.
tmat2x2< int, lowp > lowp_imat2x2
Low-precision signed integer 2x2 matrix.
tmat2x2< int, highp > highp_imat2
High-precision signed integer 2x2 matrix.
tmat2x3< uint, highp > highp_umat2x3
High-precision unsigned integer 2x3 matrix.
tmat2x4< uint, mediump > mediump_umat2x4
Medium-precision unsigned integer 2x4 matrix.
mediump_umat4x3 umat4x3
Unsigned integer 4x3 matrix.
mediump_imat2 imat2
Signed integer 2x2 matrix.
mediump_imat4x2 imat4x2
Signed integer 4x2 matrix.
tmat2x2< uint, lowp > lowp_umat2x2
Low-precision unsigned integer 2x2 matrix.
tmat4x2< int, lowp > lowp_imat4x2
Low-precision signed integer 4x2 matrix.
mediump_umat3x2 umat3x2
Unsigned integer 3x2 matrix.
mediump_umat3x4 umat3x4
Unsigned integer 3x4 matrix.
tmat2x2< uint, mediump > mediump_umat2
Medium-precision unsigned integer 2x2 matrix.
tmat3x3< uint, mediump > mediump_umat3x3
Medium-precision unsigned integer 3x3 matrix.
mediump_imat4x4 imat4x4
Signed integer 4x4 matrix.
tmat3x2< uint, lowp > lowp_umat3x2
Low-precision unsigned integer 3x2 matrix.
tmat4x2< int, mediump > mediump_imat4x2
Medium-precision signed integer 4x2 matrix.
tmat4x4< int, lowp > lowp_imat4x4
Low-precision signed integer 4x4 matrix.
Definition: _noise.hpp:39
tmat2x2< int, mediump > mediump_imat2
Medium-precision signed integer 2x2 matrix.
tmat4x4< int, mediump > mediump_imat4
Medium-precision signed integer 4x4 matrix.
tmat3x3< uint, mediump > mediump_umat3
Medium-precision unsigned integer 3x3 matrix.
mediump_imat2x4 imat2x4
Signed integer 2x4 matrix.
tmat4x4< uint, lowp > lowp_umat4x4
Low-precision unsigned integer 4x4 matrix.
tmat4x4< uint, highp > highp_umat4x4
High-precision unsigned integer 4x4 matrix.
tmat2x4< uint, lowp > lowp_umat2x4
Low-precision unsigned integer 2x4 matrix.
mediump_umat4 umat4
Unsigned integer 4x4 matrix.
tmat4x4< uint, lowp > lowp_umat4
Low-precision unsigned integer 4x4 matrix.
mediump_imat3x2 imat3x2
Signed integer 3x2 matrix.
tmat4x3< int, lowp > lowp_imat4x3
Low-precision signed integer 4x3 matrix.
tmat4x3< int, highp > highp_imat4x3
High-precision signed integer 4x3 matrix.
tmat4x3< uint, highp > highp_umat4x3
High-precision unsigned integer 4x3 matrix.
tmat4x2< uint, highp > highp_umat4x2
High-precision unsigned integer 4x2 matrix.
mediump_imat3x3 imat3x3
Signed integer 3x3 matrix.
mediump_imat4x3 imat4x3
Signed integer 4x3 matrix.
tmat3x4< int, mediump > mediump_imat3x4
Medium-precision signed integer 3x4 matrix.
tmat4x4< int, lowp > lowp_imat4
Low-precision signed integer 4x4 matrix.
tmat3x3< int, lowp > lowp_imat3x3
Low-precision signed integer 3x3 matrix.
tmat3x3< int, mediump > mediump_imat3x3
Medium-precision signed integer 3x3 matrix.
mediump_umat3x3 umat3x3
Unsigned integer 3x3 matrix.
tmat3x3< int, highp > highp_imat3
High-precision signed integer 3x3 matrix.