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