0.9.6
fwd.hpp
Go to the documentation of this file.
1 
33 #pragma once
34 
35 #include "detail/type_int.hpp"
36 #include "detail/type_float.hpp"
37 #include "detail/type_vec.hpp"
38 #include "detail/type_mat.hpp"
39 
41 // GLM_GTC_quaternion
42 namespace glm
43 {
44  template <typename T, precision P> struct tquat;
45 
49  typedef tquat<float, lowp> lowp_quat;
50 
54  typedef tquat<float, mediump> mediump_quat;
55 
59  typedef tquat<float, highp> highp_quat;
60 
61 #if(defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
62  typedef highp_quat quat;
63 #elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
64  typedef mediump_quat quat;
65 #elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && defined(GLM_PRECISION_LOWP_FLOAT))
66  typedef lowp_quat quat;
67 #elif(!defined(GLM_PRECISION_HIGHP_FLOAT) && !defined(GLM_PRECISION_MEDIUMP_FLOAT) && !defined(GLM_PRECISION_LOWP_FLOAT))
68  typedef highp_quat quat;
70 #endif
71 
75  typedef lowp_quat lowp_fquat;
76 
80  typedef mediump_quat mediump_fquat;
81 
85  typedef highp_quat highp_fquat;
86 
90  typedef quat fquat;
91 
92 
96  typedef tquat<double, lowp> lowp_dquat;
97 
101  typedef tquat<double, mediump> mediump_dquat;
102 
106  typedef tquat<double, highp> highp_dquat;
107 
108 #if(defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
109  typedef highp_dquat dquat;
110 #elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
111  typedef mediump_dquat dquat;
112 #elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && defined(GLM_PRECISION_LOWP_DOUBLE))
113  typedef lowp_dquat dquat;
114 #elif(!defined(GLM_PRECISION_HIGHP_DOUBLE) && !defined(GLM_PRECISION_MEDIUMP_DOUBLE) && !defined(GLM_PRECISION_LOWP_DOUBLE))
115  typedef highp_dquat dquat;
119 #endif
120 
121 }//namespace glm
122 
124 // GLM_GTC_precision
125 namespace glm
126 {
129 
132  typedef detail::int8 lowp_int8;
133 
136  typedef detail::int16 lowp_int16;
137 
140  typedef detail::int32 lowp_int32;
141 
144  typedef detail::int64 lowp_int64;
145 
148  typedef detail::int8 lowp_int8_t;
149 
152  typedef detail::int16 lowp_int16_t;
153 
156  typedef detail::int32 lowp_int32_t;
157 
160  typedef detail::int64 lowp_int64_t;
161 
164  typedef detail::int8 lowp_i8;
165 
168  typedef detail::int16 lowp_i16;
169 
172  typedef detail::int32 lowp_i32;
173 
176  typedef detail::int64 lowp_i64;
177 
180  typedef detail::int8 mediump_int8;
181 
184  typedef detail::int16 mediump_int16;
185 
188  typedef detail::int32 mediump_int32;
189 
192  typedef detail::int64 mediump_int64;
193 
196  typedef detail::int8 mediump_int8_t;
197 
200  typedef detail::int16 mediump_int16_t;
201 
204  typedef detail::int32 mediump_int32_t;
205 
208  typedef detail::int64 mediump_int64_t;
209 
212  typedef detail::int8 mediump_i8;
213 
216  typedef detail::int16 mediump_i16;
217 
220  typedef detail::int32 mediump_i32;
221 
224  typedef detail::int64 mediump_i64;
225 
228  typedef detail::int8 highp_int8;
229 
232  typedef detail::int16 highp_int16;
233 
236  typedef detail::int32 highp_int32;
237 
240  typedef detail::int64 highp_int64;
241 
244  typedef detail::int8 highp_int8_t;
245 
248  typedef detail::int16 highp_int16_t;
249 
252  typedef detail::int32 highp_int32_t;
253 
256  typedef detail::int64 highp_int64_t;
257 
260  typedef detail::int8 highp_i8;
261 
264  typedef detail::int16 highp_i16;
265 
268  typedef detail::int32 highp_i32;
269 
272  typedef detail::int64 highp_i64;
273 
274 
277  typedef detail::int8 int8;
278 
281  typedef detail::int16 int16;
282 
285  typedef detail::int32 int32;
286 
289  typedef detail::int64 int64;
290 
291 
292 #if GLM_HAS_EXTENDED_INTEGER_TYPE
293  using std::int8_t;
294  using std::int16_t;
295  using std::int32_t;
296  using std::int64_t;
297 #else
298  typedef detail::int8 int8_t;
301 
304  typedef detail::int16 int16_t;
305 
308  typedef detail::int32 int32_t;
309 
312  typedef detail::int64 int64_t;
313 #endif
314 
317  typedef detail::int8 i8;
318 
321  typedef detail::int16 i16;
322 
325  typedef detail::int32 i32;
326 
329  typedef detail::int64 i64;
330 
331 
332 
335  typedef tvec1<i8, lowp> lowp_i8vec1;
336 
339  typedef tvec2<i8, lowp> lowp_i8vec2;
340 
343  typedef tvec3<i8, lowp> lowp_i8vec3;
344 
347  typedef tvec4<i8, lowp> lowp_i8vec4;
348 
349 
352  typedef tvec1<i8, mediump> mediump_i8vec1;
353 
356  typedef tvec2<i8, mediump> mediump_i8vec2;
357 
360  typedef tvec3<i8, mediump> mediump_i8vec3;
361 
364  typedef tvec4<i8, mediump> mediump_i8vec4;
365 
366 
369  typedef tvec1<i8, highp> highp_i8vec1;
370 
373  typedef tvec2<i8, highp> highp_i8vec2;
374 
377  typedef tvec3<i8, highp> highp_i8vec3;
378 
381  typedef tvec4<i8, highp> highp_i8vec4;
382 
383 #if(defined(GLM_PRECISION_LOWP_INT))
384  typedef lowp_i8vec1 i8vec1;
385  typedef lowp_i8vec2 i8vec2;
386  typedef lowp_i8vec3 i8vec3;
387  typedef lowp_i8vec4 i8vec4;
388 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
389  typedef mediump_i8vec1 i8vec1;
390  typedef mediump_i8vec2 i8vec2;
391  typedef mediump_i8vec3 i8vec3;
392  typedef mediump_i8vec4 i8vec4;
393 #else
394  typedef highp_i8vec1 i8vec1;
397 
400  typedef highp_i8vec2 i8vec2;
401 
404  typedef highp_i8vec3 i8vec3;
405 
408  typedef highp_i8vec4 i8vec4;
409 #endif
410 
411 
414  typedef tvec1<i16, lowp> lowp_i16vec1;
415 
418  typedef tvec2<i16, lowp> lowp_i16vec2;
419 
422  typedef tvec3<i16, lowp> lowp_i16vec3;
423 
426  typedef tvec4<i16, lowp> lowp_i16vec4;
427 
428 
431  typedef tvec1<i16, mediump> mediump_i16vec1;
432 
435  typedef tvec2<i16, mediump> mediump_i16vec2;
436 
439  typedef tvec3<i16, mediump> mediump_i16vec3;
440 
443  typedef tvec4<i16, mediump> mediump_i16vec4;
444 
445 
448  typedef tvec1<i16, highp> highp_i16vec1;
449 
452  typedef tvec2<i16, highp> highp_i16vec2;
453 
456  typedef tvec3<i16, highp> highp_i16vec3;
457 
460  typedef tvec4<i16, highp> highp_i16vec4;
461 
462 
463 #if(defined(GLM_PRECISION_LOWP_INT))
464  typedef lowp_i16vec1 i16vec1;
465  typedef lowp_i16vec2 i16vec2;
466  typedef lowp_i16vec3 i16vec3;
467  typedef lowp_i16vec4 i16vec4;
468 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
469  typedef mediump_i16vec1 i16vec1;
470  typedef mediump_i16vec2 i16vec2;
471  typedef mediump_i16vec3 i16vec3;
472  typedef mediump_i16vec4 i16vec4;
473 #else
474  typedef highp_i16vec1 i16vec1;
477 
480  typedef highp_i16vec2 i16vec2;
481 
484  typedef highp_i16vec3 i16vec3;
485 
488  typedef highp_i16vec4 i16vec4;
489 #endif
490 
491 
494  typedef tvec1<i32, lowp> lowp_i32vec1;
495 
498  typedef tvec2<i32, lowp> lowp_i32vec2;
499 
502  typedef tvec3<i32, lowp> lowp_i32vec3;
503 
506  typedef tvec4<i32, lowp> lowp_i32vec4;
507 
508 
511  typedef tvec1<i32, mediump> mediump_i32vec1;
512 
515  typedef tvec2<i32, mediump> mediump_i32vec2;
516 
519  typedef tvec3<i32, mediump> mediump_i32vec3;
520 
523  typedef tvec4<i32, mediump> mediump_i32vec4;
524 
525 
528  typedef tvec1<i32, highp> highp_i32vec1;
529 
532  typedef tvec2<i32, highp> highp_i32vec2;
533 
536  typedef tvec3<i32, highp> highp_i32vec3;
537 
540  typedef tvec4<i32, highp> highp_i32vec4;
541 
542 #if(defined(GLM_PRECISION_LOWP_INT))
543  typedef lowp_i32vec1 i32vec1;
544  typedef lowp_i32vec2 i32vec2;
545  typedef lowp_i32vec3 i32vec3;
546  typedef lowp_i32vec4 i32vec4;
547 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
548  typedef mediump_i32vec1 i32vec1;
549  typedef mediump_i32vec2 i32vec2;
550  typedef mediump_i32vec3 i32vec3;
551  typedef mediump_i32vec4 i32vec4;
552 #else
553  typedef highp_i32vec1 i32vec1;
556 
559  typedef highp_i32vec2 i32vec2;
560 
563  typedef highp_i32vec3 i32vec3;
564 
567  typedef highp_i32vec4 i32vec4;
568 #endif
569 
570 
573  typedef tvec1<i32, lowp> lowp_i32vec1;
574 
577  typedef tvec2<i32, lowp> lowp_i32vec2;
578 
581  typedef tvec3<i32, lowp> lowp_i32vec3;
582 
585  typedef tvec4<i32, lowp> lowp_i32vec4;
586 
587 
590  typedef tvec1<i32, mediump> mediump_i32vec1;
591 
594  typedef tvec2<i32, mediump> mediump_i32vec2;
595 
598  typedef tvec3<i32, mediump> mediump_i32vec3;
599 
602  typedef tvec4<i32, mediump> mediump_i32vec4;
603 
604 
607  typedef tvec1<i32, highp> highp_i32vec1;
608 
611  typedef tvec2<i32, highp> highp_i32vec2;
612 
615  typedef tvec3<i32, highp> highp_i32vec3;
616 
619  typedef tvec4<i32, highp> highp_i32vec4;
620 
621 #if(defined(GLM_PRECISION_LOWP_INT))
622  typedef lowp_i32vec1 i32vec1;
623  typedef lowp_i32vec2 i32vec2;
624  typedef lowp_i32vec3 i32vec3;
625  typedef lowp_i32vec4 i32vec4;
626 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
627  typedef mediump_i32vec1 i32vec1;
628  typedef mediump_i32vec2 i32vec2;
629  typedef mediump_i32vec3 i32vec3;
630  typedef mediump_i32vec4 i32vec4;
631 #else
632  typedef highp_i32vec1 i32vec1;
635 
638  typedef highp_i32vec2 i32vec2;
639 
642  typedef highp_i32vec3 i32vec3;
643 
646  typedef highp_i32vec4 i32vec4;
647 #endif
648 
649 
650 
653  typedef tvec1<i64, lowp> lowp_i64vec1;
654 
657  typedef tvec2<i64, lowp> lowp_i64vec2;
658 
661  typedef tvec3<i64, lowp> lowp_i64vec3;
662 
665  typedef tvec4<i64, lowp> lowp_i64vec4;
666 
667 
670  typedef tvec1<i64, mediump> mediump_i64vec1;
671 
674  typedef tvec2<i64, mediump> mediump_i64vec2;
675 
678  typedef tvec3<i64, mediump> mediump_i64vec3;
679 
682  typedef tvec4<i64, mediump> mediump_i64vec4;
683 
684 
687  typedef tvec1<i64, highp> highp_i64vec1;
688 
691  typedef tvec2<i64, highp> highp_i64vec2;
692 
695  typedef tvec3<i64, highp> highp_i64vec3;
696 
699  typedef tvec4<i64, highp> highp_i64vec4;
700 
701 #if(defined(GLM_PRECISION_LOWP_INT))
702  typedef lowp_i64vec1 i64vec1;
703  typedef lowp_i64vec2 i64vec2;
704  typedef lowp_i64vec3 i64vec3;
705  typedef lowp_i64vec4 i64vec4;
706 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
707  typedef mediump_i64vec1 i64vec1;
708  typedef mediump_i64vec2 i64vec2;
709  typedef mediump_i64vec3 i64vec3;
710  typedef mediump_i64vec4 i64vec4;
711 #else
712  typedef highp_i64vec1 i64vec1;
715 
718  typedef highp_i64vec2 i64vec2;
719 
722  typedef highp_i64vec3 i64vec3;
723 
726  typedef highp_i64vec4 i64vec4;
727 #endif
728 
729 
731  // Unsigned int vector types
732 
735  typedef detail::uint8 lowp_uint8;
736 
739  typedef detail::uint16 lowp_uint16;
740 
743  typedef detail::uint32 lowp_uint32;
744 
747  typedef detail::uint64 lowp_uint64;
748 
749 
752  typedef detail::uint8 lowp_uint8_t;
753 
756  typedef detail::uint16 lowp_uint16_t;
757 
760  typedef detail::uint32 lowp_uint32_t;
761 
764  typedef detail::uint64 lowp_uint64_t;
765 
766 
769  typedef detail::uint8 lowp_u8;
770 
773  typedef detail::uint16 lowp_u16;
774 
777  typedef detail::uint32 lowp_u32;
778 
781  typedef detail::uint64 lowp_u64;
782 
783 
784 
787  typedef detail::uint8 mediump_uint8;
788 
791  typedef detail::uint16 mediump_uint16;
792 
795  typedef detail::uint32 mediump_uint32;
796 
799  typedef detail::uint64 mediump_uint64;
800 
803  typedef detail::uint8 mediump_uint8_t;
804 
807  typedef detail::uint16 mediump_uint16_t;
808 
811  typedef detail::uint32 mediump_uint32_t;
812 
815  typedef detail::uint64 mediump_uint64_t;
816 
819  typedef detail::uint8 mediump_u8;
820 
823  typedef detail::uint16 mediump_u16;
824 
827  typedef detail::uint32 mediump_u32;
828 
831  typedef detail::uint64 mediump_u64;
832 
833 
834 
837  typedef detail::uint8 highp_uint8;
838 
841  typedef detail::uint16 highp_uint16;
842 
845  typedef detail::uint32 highp_uint32;
846 
849  typedef detail::uint64 highp_uint64;
850 
853  typedef detail::uint8 highp_uint8_t;
854 
857  typedef detail::uint16 highp_uint16_t;
858 
861  typedef detail::uint32 highp_uint32_t;
862 
865  typedef detail::uint64 highp_uint64_t;
866 
869  typedef detail::uint8 highp_u8;
870 
873  typedef detail::uint16 highp_u16;
874 
877  typedef detail::uint32 highp_u32;
878 
881  typedef detail::uint64 highp_u64;
882 
883 
884 
887  typedef detail::uint8 uint8;
888 
891  typedef detail::uint16 uint16;
892 
895  typedef detail::uint32 uint32;
896 
899  typedef detail::uint64 uint64;
900 
901 #if GLM_HAS_EXTENDED_INTEGER_TYPE
902  using std::uint8_t;
903  using std::uint16_t;
904  using std::uint32_t;
905  using std::uint64_t;
906 #else
907  typedef detail::uint8 uint8_t;
910 
913  typedef detail::uint16 uint16_t;
914 
917  typedef detail::uint32 uint32_t;
918 
921  typedef detail::uint64 uint64_t;
922 #endif
923 
926  typedef detail::uint8 u8;
927 
930  typedef detail::uint16 u16;
931 
934  typedef detail::uint32 u32;
935 
938  typedef detail::uint64 u64;
939 
940 
941 
944  typedef tvec1<u8, lowp> lowp_u8vec1;
945 
948  typedef tvec2<u8, lowp> lowp_u8vec2;
949 
952  typedef tvec3<u8, lowp> lowp_u8vec3;
953 
956  typedef tvec4<u8, lowp> lowp_u8vec4;
957 
958 
961  typedef tvec1<u8, mediump> mediump_u8vec1;
962 
965  typedef tvec2<u8, mediump> mediump_u8vec2;
966 
969  typedef tvec3<u8, mediump> mediump_u8vec3;
970 
973  typedef tvec4<u8, mediump> mediump_u8vec4;
974 
975 
978  typedef tvec1<u8, highp> highp_u8vec1;
979 
982  typedef tvec2<u8, highp> highp_u8vec2;
983 
986  typedef tvec3<u8, highp> highp_u8vec3;
987 
990  typedef tvec4<u8, highp> highp_u8vec4;
991 
992 #if(defined(GLM_PRECISION_LOWP_INT))
993  typedef lowp_u8vec1 u8vec1;
994  typedef lowp_u8vec2 u8vec2;
995  typedef lowp_u8vec3 u8vec3;
996  typedef lowp_u8vec4 u8vec4;
997 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
998  typedef mediump_u8vec1 u8vec1;
999  typedef mediump_u8vec2 u8vec2;
1000  typedef mediump_u8vec3 u8vec3;
1001  typedef mediump_u8vec4 u8vec4;
1002 #else
1003  typedef highp_u8vec1 u8vec1;
1006 
1009  typedef highp_u8vec2 u8vec2;
1010 
1013  typedef highp_u8vec3 u8vec3;
1014 
1017  typedef highp_u8vec4 u8vec4;
1018 #endif
1019 
1020 
1023  typedef tvec1<u16, lowp> lowp_u16vec1;
1024 
1027  typedef tvec2<u16, lowp> lowp_u16vec2;
1028 
1031  typedef tvec3<u16, lowp> lowp_u16vec3;
1032 
1035  typedef tvec4<u16, lowp> lowp_u16vec4;
1036 
1037 
1040  typedef tvec1<u16, mediump> mediump_u16vec1;
1041 
1044  typedef tvec2<u16, mediump> mediump_u16vec2;
1045 
1048  typedef tvec3<u16, mediump> mediump_u16vec3;
1049 
1052  typedef tvec4<u16, mediump> mediump_u16vec4;
1053 
1054 
1057  typedef tvec1<u16, highp> highp_u16vec1;
1058 
1061  typedef tvec2<u16, highp> highp_u16vec2;
1062 
1065  typedef tvec3<u16, highp> highp_u16vec3;
1066 
1069  typedef tvec4<u16, highp> highp_u16vec4;
1070 
1071 
1072 #if(defined(GLM_PRECISION_LOWP_INT))
1073  typedef lowp_u16vec1 u16vec1;
1074  typedef lowp_u16vec2 u16vec2;
1075  typedef lowp_u16vec3 u16vec3;
1076  typedef lowp_u16vec4 u16vec4;
1077 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
1078  typedef mediump_u16vec1 u16vec1;
1079  typedef mediump_u16vec2 u16vec2;
1080  typedef mediump_u16vec3 u16vec3;
1081  typedef mediump_u16vec4 u16vec4;
1082 #else
1083  typedef highp_u16vec1 u16vec1;
1086 
1089  typedef highp_u16vec2 u16vec2;
1090 
1093  typedef highp_u16vec3 u16vec3;
1094 
1097  typedef highp_u16vec4 u16vec4;
1098 #endif
1099 
1100 
1103  typedef tvec1<u32, lowp> lowp_u32vec1;
1104 
1107  typedef tvec2<u32, lowp> lowp_u32vec2;
1108 
1111  typedef tvec3<u32, lowp> lowp_u32vec3;
1112 
1115  typedef tvec4<u32, lowp> lowp_u32vec4;
1116 
1117 
1120  typedef tvec1<u32, mediump> mediump_u32vec1;
1121 
1124  typedef tvec2<u32, mediump> mediump_u32vec2;
1125 
1128  typedef tvec3<u32, mediump> mediump_u32vec3;
1129 
1132  typedef tvec4<u32, mediump> mediump_u32vec4;
1133 
1134 
1137  typedef tvec1<u32, highp> highp_u32vec1;
1138 
1141  typedef tvec2<u32, highp> highp_u32vec2;
1142 
1145  typedef tvec3<u32, highp> highp_u32vec3;
1146 
1149  typedef tvec4<u32, highp> highp_u32vec4;
1150 
1151 #if(defined(GLM_PRECISION_LOWP_INT))
1152  typedef lowp_u32vec1 u32vec1;
1153  typedef lowp_u32vec2 u32vec2;
1154  typedef lowp_u32vec3 u32vec3;
1155  typedef lowp_u32vec4 u32vec4;
1156 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
1157  typedef mediump_u32vec1 u32vec1;
1158  typedef mediump_u32vec2 u32vec2;
1159  typedef mediump_u32vec3 u32vec3;
1160  typedef mediump_u32vec4 u32vec4;
1161 #else
1162  typedef highp_u32vec1 u32vec1;
1165 
1168  typedef highp_u32vec2 u32vec2;
1169 
1172  typedef highp_u32vec3 u32vec3;
1173 
1176  typedef highp_u32vec4 u32vec4;
1177 #endif
1178 
1179 
1182  typedef tvec1<u32, lowp> lowp_u32vec1;
1183 
1186  typedef tvec2<u32, lowp> lowp_u32vec2;
1187 
1190  typedef tvec3<u32, lowp> lowp_u32vec3;
1191 
1194  typedef tvec4<u32, lowp> lowp_u32vec4;
1195 
1196 
1199  typedef tvec1<u32, mediump> mediump_u32vec1;
1200 
1203  typedef tvec2<u32, mediump> mediump_u32vec2;
1204 
1207  typedef tvec3<u32, mediump> mediump_u32vec3;
1208 
1211  typedef tvec4<u32, mediump> mediump_u32vec4;
1212 
1213 
1216  typedef tvec1<u32, highp> highp_u32vec1;
1217 
1220  typedef tvec2<u32, highp> highp_u32vec2;
1221 
1224  typedef tvec3<u32, highp> highp_u32vec3;
1225 
1228  typedef tvec4<u32, highp> highp_u32vec4;
1229 
1230 #if(defined(GLM_PRECISION_LOWP_INT))
1231  typedef lowp_u32vec1 u32vec1;
1232  typedef lowp_u32vec2 u32vec2;
1233  typedef lowp_u32vec3 u32vec3;
1234  typedef lowp_u32vec4 u32vec4;
1235 #elif(defined(GLM_PRECISION_MEDIUMP_INT))
1236  typedef mediump_u32vec1 u32vec1;
1237  typedef mediump_u32vec2 u32vec2;
1238  typedef mediump_u32vec3 u32vec3;
1239  typedef mediump_u32vec4 u32vec4;
1240 #else
1241  typedef highp_u32vec1 u32vec1;
1244 
1247  typedef highp_u32vec2 u32vec2;
1248 
1251  typedef highp_u32vec3 u32vec3;
1252 
1255  typedef highp_u32vec4 u32vec4;
1256 #endif
1257 
1258 
1259 
1262  typedef tvec1<u64, lowp> lowp_u64vec1;
1263 
1266  typedef tvec2<u64, lowp> lowp_u64vec2;
1267 
1270  typedef tvec3<u64, lowp> lowp_u64vec3;
1271 
1274  typedef tvec4<u64, lowp> lowp_u64vec4;
1275 
1276 
1279  typedef tvec1<u64, mediump> mediump_u64vec1;
1280 
1283  typedef tvec2<u64, mediump> mediump_u64vec2;
1284 
1287  typedef tvec3<u64, mediump> mediump_u64vec3;
1288 
1291  typedef tvec4<u64, mediump> mediump_u64vec4;
1292 
1293 
1296  typedef tvec1<u64, highp> highp_u64vec1;
1297 
1300  typedef tvec2<u64, highp> highp_u64vec2;
1301 
1304  typedef tvec3<u64, highp> highp_u64vec3;
1305 
1308  typedef tvec4<u64, highp> highp_u64vec4;
1309 
1310 #if(defined(GLM_PRECISION_LOWP_UINT))
1311  typedef lowp_u64vec1 u64vec1;
1312  typedef lowp_u64vec2 u64vec2;
1313  typedef lowp_u64vec3 u64vec3;
1314  typedef lowp_u64vec4 u64vec4;
1315 #elif(defined(GLM_PRECISION_MEDIUMP_UINT))
1316  typedef mediump_u64vec1 u64vec1;
1317  typedef mediump_u64vec2 u64vec2;
1318  typedef mediump_u64vec3 u64vec3;
1319  typedef mediump_u64vec4 u64vec4;
1320 #else
1321  typedef highp_u64vec1 u64vec1;
1324 
1327  typedef highp_u64vec2 u64vec2;
1328 
1331  typedef highp_u64vec3 u64vec3;
1332 
1335  typedef highp_u64vec4 u64vec4;
1336 #endif
1337 
1338 
1340  // Float vector types
1341 
1344  typedef detail::float32 lowp_float32;
1345 
1348  typedef detail::float64 lowp_float64;
1349 
1352  typedef detail::float32 lowp_float32_t;
1353 
1356  typedef detail::float64 lowp_float64_t;
1357 
1361 
1365 
1368  typedef detail::float32 lowp_float32;
1369 
1372  typedef detail::float64 lowp_float64;
1373 
1376  typedef detail::float32 lowp_float32_t;
1377 
1380  typedef detail::float64 lowp_float64_t;
1381 
1384  typedef float32 lowp_f32;
1385 
1388  typedef float64 lowp_f64;
1389 
1390 
1393  typedef detail::float32 lowp_float32;
1394 
1397  typedef detail::float64 lowp_float64;
1398 
1401  typedef detail::float32 lowp_float32_t;
1402 
1405  typedef detail::float64 lowp_float64_t;
1406 
1409  typedef float32 lowp_f32;
1410 
1413  typedef float64 lowp_f64;
1414 
1415 
1418  typedef detail::float32 mediump_float32;
1419 
1422  typedef detail::float64 mediump_float64;
1423 
1426  typedef detail::float32 mediump_float32_t;
1427 
1430  typedef detail::float64 mediump_float64_t;
1431 
1435 
1439 
1440 
1443  typedef detail::float32 highp_float32;
1444 
1447  typedef detail::float64 highp_float64;
1448 
1451  typedef detail::float32 highp_float32_t;
1452 
1455  typedef detail::float64 highp_float64_t;
1456 
1460 
1464 
1465 
1466 #if(defined(GLM_PRECISION_LOWP_FLOAT))
1467  typedef lowp_float32 float32;
1470 
1473  typedef lowp_float64 float64;
1474 
1477  typedef lowp_float32_t float32_t;
1478 
1481  typedef lowp_float64_t float64_t;
1482 
1485  typedef lowp_f32 f32;
1486 
1489  typedef lowp_f64 f64;
1490 
1491 #elif(defined(GLM_PRECISION_MEDIUMP_FLOAT))
1492 
1495  typedef mediump_float32 float32;
1496 
1499  typedef mediump_float64 float64;
1500 
1503  typedef mediump_float32 float32_t;
1504 
1507  typedef mediump_float64 float64_t;
1508 
1511  typedef mediump_float32 f32;
1512 
1515  typedef mediump_float64 f64;
1516 
1517 #else//(defined(GLM_PRECISION_HIGHP_FLOAT))
1518 
1521  typedef highp_float32 float32;
1522 
1525  typedef highp_float64 float64;
1526 
1529  typedef highp_float32_t float32_t;
1530 
1533  typedef highp_float64_t float64_t;
1534 
1537  typedef highp_float32_t f32;
1538 
1541  typedef highp_float64_t f64;
1542 #endif
1543 
1544 
1547  typedef tvec1<float, lowp> lowp_vec1;
1548 
1551  typedef tvec2<float, lowp> lowp_vec2;
1552 
1555  typedef tvec3<float, lowp> lowp_vec3;
1556 
1559  typedef tvec4<float, lowp> lowp_vec4;
1560 
1563  typedef tvec1<float, lowp> lowp_fvec1;
1564 
1567  typedef tvec2<float, lowp> lowp_fvec2;
1568 
1571  typedef tvec3<float, lowp> lowp_fvec3;
1572 
1575  typedef tvec4<float, lowp> lowp_fvec4;
1576 
1577 
1580  typedef tvec1<float, mediump> mediump_vec1;
1581 
1584  typedef tvec2<float, mediump> mediump_vec2;
1585 
1588  typedef tvec3<float, mediump> mediump_vec3;
1589 
1592  typedef tvec4<float, mediump> mediump_vec4;
1593 
1596  typedef tvec1<float, mediump> mediump_fvec1;
1597 
1600  typedef tvec2<float, mediump> mediump_fvec2;
1601 
1604  typedef tvec3<float, mediump> mediump_fvec3;
1605 
1608  typedef tvec4<float, mediump> mediump_fvec4;
1609 
1610 
1613  typedef tvec1<float, highp> highp_vec1;
1614 
1617  typedef tvec2<float, highp> highp_vec2;
1618 
1621  typedef tvec3<float, highp> highp_vec3;
1622 
1625  typedef tvec4<float, highp> highp_vec4;
1626 
1629  typedef tvec1<float, highp> highp_fvec1;
1630 
1633  typedef tvec2<float, highp> highp_fvec2;
1634 
1637  typedef tvec3<float, highp> highp_fvec3;
1638 
1641  typedef tvec4<float, highp> highp_fvec4;
1642 
1643 
1646  typedef tvec1<f32, lowp> lowp_f32vec1;
1647 
1650  typedef tvec2<f32, lowp> lowp_f32vec2;
1651 
1654  typedef tvec3<f32, lowp> lowp_f32vec3;
1655 
1658  typedef tvec4<f32, lowp> lowp_f32vec4;
1659 
1662  typedef tvec1<f32, mediump> mediump_f32vec1;
1663 
1666  typedef tvec2<f32, mediump> mediump_f32vec2;
1667 
1670  typedef tvec3<f32, mediump> mediump_f32vec3;
1671 
1674  typedef tvec4<f32, mediump> mediump_f32vec4;
1675 
1678  typedef tvec1<f32, highp> highp_f32vec1;
1679 
1682  typedef tvec2<f32, highp> highp_f32vec2;
1683 
1686  typedef tvec3<f32, highp> highp_f32vec3;
1687 
1690  typedef tvec4<f32, highp> highp_f32vec4;
1691 
1692 
1695  typedef tvec1<f64, lowp> lowp_f64vec1;
1696 
1699  typedef tvec2<f64, lowp> lowp_f64vec2;
1700 
1703  typedef tvec3<f64, lowp> lowp_f64vec3;
1704 
1707  typedef tvec4<f64, lowp> lowp_f64vec4;
1708 
1711  typedef tvec1<f64, mediump> mediump_f64vec1;
1712 
1715  typedef tvec2<f64, mediump> mediump_f64vec2;
1716 
1719  typedef tvec3<f64, mediump> mediump_f64vec3;
1720 
1723  typedef tvec4<f64, mediump> mediump_f64vec4;
1724 
1727  typedef tvec1<f64, highp> highp_f64vec1;
1728 
1731  typedef tvec2<f64, highp> highp_f64vec2;
1732 
1735  typedef tvec3<f64, highp> highp_f64vec3;
1736 
1739  typedef tvec4<f64, highp> highp_f64vec4;
1740 
1741 
1743  // Float matrix types
1744 
1747  //typedef lowp_f32 lowp_fmat1x1;
1748 
1751  typedef tmat2x2<f32, lowp> lowp_fmat2x2;
1752 
1755  typedef tmat2x3<f32, lowp> lowp_fmat2x3;
1756 
1759  typedef tmat2x4<f32, lowp> lowp_fmat2x4;
1760 
1763  typedef tmat3x2<f32, lowp> lowp_fmat3x2;
1764 
1767  typedef tmat3x3<f32, lowp> lowp_fmat3x3;
1768 
1771  typedef tmat3x4<f32, lowp> lowp_fmat3x4;
1772 
1775  typedef tmat4x2<f32, lowp> lowp_fmat4x2;
1776 
1779  typedef tmat4x3<f32, lowp> lowp_fmat4x3;
1780 
1783  typedef tmat4x4<f32, lowp> lowp_fmat4x4;
1784 
1787  //typedef lowp_fmat1x1 lowp_fmat1;
1788 
1791  typedef lowp_fmat2x2 lowp_fmat2;
1792 
1795  typedef lowp_fmat3x3 lowp_fmat3;
1796 
1799  typedef lowp_fmat4x4 lowp_fmat4;
1800 
1801 
1804  //typedef mediump_f32 mediump_fmat1x1;
1805 
1808  typedef tmat2x2<f32, mediump> mediump_fmat2x2;
1809 
1812  typedef tmat2x3<f32, mediump> mediump_fmat2x3;
1813 
1816  typedef tmat2x4<f32, mediump> mediump_fmat2x4;
1817 
1820  typedef tmat3x2<f32, mediump> mediump_fmat3x2;
1821 
1824  typedef tmat3x3<f32, mediump> mediump_fmat3x3;
1825 
1828  typedef tmat3x4<f32, mediump> mediump_fmat3x4;
1829 
1832  typedef tmat4x2<f32, mediump> mediump_fmat4x2;
1833 
1836  typedef tmat4x3<f32, mediump> mediump_fmat4x3;
1837 
1840  typedef tmat4x4<f32, mediump> mediump_fmat4x4;
1841 
1844  //typedef mediump_fmat1x1 mediump_fmat1;
1845 
1848  typedef mediump_fmat2x2 mediump_fmat2;
1849 
1852  typedef mediump_fmat3x3 mediump_fmat3;
1853 
1856  typedef mediump_fmat4x4 mediump_fmat4;
1857 
1858 
1861  //typedef highp_f32 highp_fmat1x1;
1862 
1865  typedef tmat2x2<f32, highp> highp_fmat2x2;
1866 
1869  typedef tmat2x3<f32, highp> highp_fmat2x3;
1870 
1873  typedef tmat2x4<f32, highp> highp_fmat2x4;
1874 
1877  typedef tmat3x2<f32, highp> highp_fmat3x2;
1878 
1881  typedef tmat3x3<f32, highp> highp_fmat3x3;
1882 
1885  typedef tmat3x4<f32, highp> highp_fmat3x4;
1886 
1889  typedef tmat4x2<f32, highp> highp_fmat4x2;
1890 
1893  typedef tmat4x3<f32, highp> highp_fmat4x3;
1894 
1897  typedef tmat4x4<f32, highp> highp_fmat4x4;
1898 
1901  //typedef highp_fmat1x1 highp_fmat1;
1902 
1905  typedef highp_fmat2x2 highp_fmat2;
1906 
1909  typedef highp_fmat3x3 highp_fmat3;
1910 
1913  typedef highp_fmat4x4 highp_fmat4;
1914 
1915 
1918  //typedef f32 lowp_f32mat1x1;
1919 
1922  typedef tmat2x2<f32, lowp> lowp_f32mat2x2;
1923 
1926  typedef tmat2x3<f32, lowp> lowp_f32mat2x3;
1927 
1930  typedef tmat2x4<f32, lowp> lowp_f32mat2x4;
1931 
1934  typedef tmat3x2<f32, lowp> lowp_f32mat3x2;
1935 
1938  typedef tmat3x3<f32, lowp> lowp_f32mat3x3;
1939 
1942  typedef tmat3x4<f32, lowp> lowp_f32mat3x4;
1943 
1946  typedef tmat4x2<f32, lowp> lowp_f32mat4x2;
1947 
1950  typedef tmat4x3<f32, lowp> lowp_f32mat4x3;
1951 
1954  typedef tmat4x4<f32, lowp> lowp_f32mat4x4;
1955 
1958  //typedef detail::tmat1x1<f32, lowp> lowp_f32mat1;
1959 
1962  typedef lowp_f32mat2x2 lowp_f32mat2;
1963 
1966  typedef lowp_f32mat3x3 lowp_f32mat3;
1967 
1970  typedef lowp_f32mat4x4 lowp_f32mat4;
1971 
1972 
1975  //typedef f32 mediump_f32mat1x1;
1976 
1979  typedef tmat2x2<f32, mediump> mediump_f32mat2x2;
1980 
1983  typedef tmat2x3<f32, mediump> mediump_f32mat2x3;
1984 
1987  typedef tmat2x4<f32, mediump> mediump_f32mat2x4;
1988 
1991  typedef tmat3x2<f32, mediump> mediump_f32mat3x2;
1992 
1995  typedef tmat3x3<f32, mediump> mediump_f32mat3x3;
1996 
1999  typedef tmat3x4<f32, mediump> mediump_f32mat3x4;
2000 
2003  typedef tmat4x2<f32, mediump> mediump_f32mat4x2;
2004 
2007  typedef tmat4x3<f32, mediump> mediump_f32mat4x3;
2008 
2011  typedef tmat4x4<f32, mediump> mediump_f32mat4x4;
2012 
2015  //typedef detail::tmat1x1<f32, mediump> f32mat1;
2016 
2019  typedef mediump_f32mat2x2 mediump_f32mat2;
2020 
2023  typedef mediump_f32mat3x3 mediump_f32mat3;
2024 
2027  typedef mediump_f32mat4x4 mediump_f32mat4;
2028 
2029 
2032  //typedef f32 highp_f32mat1x1;
2033 
2036  typedef tmat2x2<f32, highp> highp_f32mat2x2;
2037 
2040  typedef tmat2x3<f32, highp> highp_f32mat2x3;
2041 
2044  typedef tmat2x4<f32, highp> highp_f32mat2x4;
2045 
2048  typedef tmat3x2<f32, highp> highp_f32mat3x2;
2049 
2052  typedef tmat3x3<f32, highp> highp_f32mat3x3;
2053 
2056  typedef tmat3x4<f32, highp> highp_f32mat3x4;
2057 
2060  typedef tmat4x2<f32, highp> highp_f32mat4x2;
2061 
2064  typedef tmat4x3<f32, highp> highp_f32mat4x3;
2065 
2068  typedef tmat4x4<f32, highp> highp_f32mat4x4;
2069 
2072  //typedef detail::tmat1x1<f32, highp> f32mat1;
2073 
2076  typedef highp_f32mat2x2 highp_f32mat2;
2077 
2080  typedef highp_f32mat3x3 highp_f32mat3;
2081 
2084  typedef highp_f32mat4x4 highp_f32mat4;
2085 
2086 
2089  //typedef f64 lowp_f64mat1x1;
2090 
2093  typedef tmat2x2<f64, lowp> lowp_f64mat2x2;
2094 
2097  typedef tmat2x3<f64, lowp> lowp_f64mat2x3;
2098 
2101  typedef tmat2x4<f64, lowp> lowp_f64mat2x4;
2102 
2105  typedef tmat3x2<f64, lowp> lowp_f64mat3x2;
2106 
2109  typedef tmat3x3<f64, lowp> lowp_f64mat3x3;
2110 
2113  typedef tmat3x4<f64, lowp> lowp_f64mat3x4;
2114 
2117  typedef tmat4x2<f64, lowp> lowp_f64mat4x2;
2118 
2121  typedef tmat4x3<f64, lowp> lowp_f64mat4x3;
2122 
2125  typedef tmat4x4<f64, lowp> lowp_f64mat4x4;
2126 
2129  //typedef lowp_f64mat1x1 lowp_f64mat1;
2130 
2133  typedef lowp_f64mat2x2 lowp_f64mat2;
2134 
2137  typedef lowp_f64mat3x3 lowp_f64mat3;
2138 
2141  typedef lowp_f64mat4x4 lowp_f64mat4;
2142 
2143 
2146  //typedef f64 Highp_f64mat1x1;
2147 
2150  typedef tmat2x2<f64, mediump> mediump_f64mat2x2;
2151 
2154  typedef tmat2x3<f64, mediump> mediump_f64mat2x3;
2155 
2158  typedef tmat2x4<f64, mediump> mediump_f64mat2x4;
2159 
2162  typedef tmat3x2<f64, mediump> mediump_f64mat3x2;
2163 
2166  typedef tmat3x3<f64, mediump> mediump_f64mat3x3;
2167 
2170  typedef tmat3x4<f64, mediump> mediump_f64mat3x4;
2171 
2174  typedef tmat4x2<f64, mediump> mediump_f64mat4x2;
2175 
2178  typedef tmat4x3<f64, mediump> mediump_f64mat4x3;
2179 
2182  typedef tmat4x4<f64, mediump> mediump_f64mat4x4;
2183 
2186  //typedef mediump_f64mat1x1 mediump_f64mat1;
2187 
2190  typedef mediump_f64mat2x2 mediump_f64mat2;
2191 
2194  typedef mediump_f64mat3x3 mediump_f64mat3;
2195 
2198  typedef mediump_f64mat4x4 mediump_f64mat4;
2199 
2202  //typedef f64 highp_f64mat1x1;
2203 
2206  typedef tmat2x2<f64, highp> highp_f64mat2x2;
2207 
2210  typedef tmat2x3<f64, highp> highp_f64mat2x3;
2211 
2214  typedef tmat2x4<f64, highp> highp_f64mat2x4;
2215 
2218  typedef tmat3x2<f64, highp> highp_f64mat3x2;
2219 
2222  typedef tmat3x3<f64, highp> highp_f64mat3x3;
2223 
2226  typedef tmat3x4<f64, highp> highp_f64mat3x4;
2227 
2230  typedef tmat4x2<f64, highp> highp_f64mat4x2;
2231 
2234  typedef tmat4x3<f64, highp> highp_f64mat4x3;
2235 
2238  typedef tmat4x4<f64, highp> highp_f64mat4x4;
2239 
2242  //typedef highp_f64mat1x1 highp_f64mat1;
2243 
2246  typedef highp_f64mat2x2 highp_f64mat2;
2247 
2250  typedef highp_f64mat3x3 highp_f64mat3;
2251 
2254  typedef highp_f64mat4x4 highp_f64mat4;
2255 
2257  // Quaternion types
2258 
2261  typedef tquat<f32, lowp> lowp_f32quat;
2262 
2265  typedef tquat<f64, lowp> lowp_f64quat;
2266 
2269  typedef tquat<f32, mediump> mediump_f32quat;
2270 
2273  typedef tquat<f64, mediump> mediump_f64quat;
2274 
2277  typedef tquat<f32, highp> highp_f32quat;
2278 
2281  typedef tquat<f64, highp> highp_f64quat;
2282 
2283 
2284 #if(defined(GLM_PRECISION_LOWP_FLOAT))
2285  typedef lowp_f32vec1 fvec1;
2286  typedef lowp_f32vec2 fvec2;
2287  typedef lowp_f32vec3 fvec3;
2288  typedef lowp_f32vec4 fvec4;
2289  typedef lowp_f32mat2 fmat2;
2290  typedef lowp_f32mat3 fmat3;
2291  typedef lowp_f32mat4 fmat4;
2292  typedef lowp_f32mat2x2 fmat2x2;
2293  typedef lowp_f32mat3x2 fmat3x2;
2294  typedef lowp_f32mat4x2 fmat4x2;
2295  typedef lowp_f32mat2x3 fmat2x3;
2296  typedef lowp_f32mat3x3 fmat3x3;
2297  typedef lowp_f32mat4x3 fmat4x3;
2298  typedef lowp_f32mat2x4 fmat2x4;
2299  typedef lowp_f32mat3x4 fmat3x4;
2300  typedef lowp_f32mat4x4 fmat4x4;
2301  typedef lowp_f32quat fquat;
2302 
2303  typedef lowp_f32vec1 f32vec1;
2304  typedef lowp_f32vec2 f32vec2;
2305  typedef lowp_f32vec3 f32vec3;
2306  typedef lowp_f32vec4 f32vec4;
2307  typedef lowp_f32mat2 f32mat2;
2308  typedef lowp_f32mat3 f32mat3;
2309  typedef lowp_f32mat4 f32mat4;
2310  typedef lowp_f32mat2x2 f32mat2x2;
2311  typedef lowp_f32mat3x2 f32mat3x2;
2312  typedef lowp_f32mat4x2 f32mat4x2;
2313  typedef lowp_f32mat2x3 f32mat2x3;
2314  typedef lowp_f32mat3x3 f32mat3x3;
2315  typedef lowp_f32mat4x3 f32mat4x3;
2316  typedef lowp_f32mat2x4 f32mat2x4;
2317  typedef lowp_f32mat3x4 f32mat3x4;
2318  typedef lowp_f32mat4x4 f32mat4x4;
2319  typedef lowp_f32quat f32quat;
2320 #elif(defined(GLM_PRECISION_MEDIUMP_FLOAT))
2321  typedef mediump_f32vec1 fvec1;
2322  typedef mediump_f32vec2 fvec2;
2323  typedef mediump_f32vec3 fvec3;
2324  typedef mediump_f32vec4 fvec4;
2325  typedef mediump_f32mat2 fmat2;
2326  typedef mediump_f32mat3 fmat3;
2327  typedef mediump_f32mat4 fmat4;
2328  typedef mediump_f32mat2x2 fmat2x2;
2329  typedef mediump_f32mat3x2 fmat3x2;
2330  typedef mediump_f32mat4x2 fmat4x2;
2331  typedef mediump_f32mat2x3 fmat2x3;
2332  typedef mediump_f32mat3x3 fmat3x3;
2333  typedef mediump_f32mat4x3 fmat4x3;
2334  typedef mediump_f32mat2x4 fmat2x4;
2335  typedef mediump_f32mat3x4 fmat3x4;
2336  typedef mediump_f32mat4x4 fmat4x4;
2337  typedef mediump_f32quat fquat;
2338 
2339  typedef mediump_f32vec1 f32vec1;
2340  typedef mediump_f32vec2 f32vec2;
2341  typedef mediump_f32vec3 f32vec3;
2342  typedef mediump_f32vec4 f32vec4;
2343  typedef mediump_f32mat2 f32mat2;
2344  typedef mediump_f32mat3 f32mat3;
2345  typedef mediump_f32mat4 f32mat4;
2346  typedef mediump_f32mat2x2 f32mat2x2;
2347  typedef mediump_f32mat3x2 f32mat3x2;
2348  typedef mediump_f32mat4x2 f32mat4x2;
2349  typedef mediump_f32mat2x3 f32mat2x3;
2350  typedef mediump_f32mat3x3 f32mat3x3;
2351  typedef mediump_f32mat4x3 f32mat4x3;
2352  typedef mediump_f32mat2x4 f32mat2x4;
2353  typedef mediump_f32mat3x4 f32mat3x4;
2354  typedef mediump_f32mat4x4 f32mat4x4;
2355  typedef mediump_f32quat f32quat;
2356 #else//if(defined(GLM_PRECISION_HIGHP_FLOAT))
2357  typedef highp_f32vec1 fvec1;
2360 
2363  typedef highp_f32vec2 fvec2;
2364 
2367  typedef highp_f32vec3 fvec3;
2368 
2371  typedef highp_f32vec4 fvec4;
2372 
2375  typedef highp_f32mat2x2 fmat2x2;
2376 
2379  typedef highp_f32mat2x3 fmat2x3;
2380 
2383  typedef highp_f32mat2x4 fmat2x4;
2384 
2387  typedef highp_f32mat3x2 fmat3x2;
2388 
2391  typedef highp_f32mat3x3 fmat3x3;
2392 
2395  typedef highp_f32mat3x4 fmat3x4;
2396 
2399  typedef highp_f32mat4x2 fmat4x2;
2400 
2403  typedef highp_f32mat4x3 fmat4x3;
2404 
2407  typedef highp_f32mat4x4 fmat4x4;
2408 
2411  typedef fmat2x2 fmat2;
2412 
2415  typedef fmat3x3 fmat3;
2416 
2419  typedef fmat4x4 fmat4;
2420 
2423  typedef highp_fquat fquat;
2424 
2425 
2426 
2429  typedef highp_f32vec1 f32vec1;
2430 
2433  typedef highp_f32vec2 f32vec2;
2434 
2437  typedef highp_f32vec3 f32vec3;
2438 
2441  typedef highp_f32vec4 f32vec4;
2442 
2445  typedef highp_f32mat2x2 f32mat2x2;
2446 
2449  typedef highp_f32mat2x3 f32mat2x3;
2450 
2453  typedef highp_f32mat2x4 f32mat2x4;
2454 
2457  typedef highp_f32mat3x2 f32mat3x2;
2458 
2461  typedef highp_f32mat3x3 f32mat3x3;
2462 
2465  typedef highp_f32mat3x4 f32mat3x4;
2466 
2469  typedef highp_f32mat4x2 f32mat4x2;
2470 
2473  typedef highp_f32mat4x3 f32mat4x3;
2474 
2477  typedef highp_f32mat4x4 f32mat4x4;
2478 
2481  typedef f32mat2x2 f32mat2;
2482 
2485  typedef f32mat3x3 f32mat3;
2486 
2489  typedef f32mat4x4 f32mat4;
2490 
2493  typedef highp_f32quat f32quat;
2494 #endif
2495 
2496 #if(defined(GLM_PRECISION_LOWP_DOUBLE))
2497  typedef lowp_f64vec1 f64vec1;
2498  typedef lowp_f64vec2 f64vec2;
2499  typedef lowp_f64vec3 f64vec3;
2500  typedef lowp_f64vec4 f64vec4;
2501  typedef lowp_f64mat2 f64mat2;
2502  typedef lowp_f64mat3 f64mat3;
2503  typedef lowp_f64mat4 f64mat4;
2504  typedef lowp_f64mat2x2 f64mat2x2;
2505  typedef lowp_f64mat3x2 f64mat3x2;
2506  typedef lowp_f64mat4x2 f64mat4x2;
2507  typedef lowp_f64mat2x3 f64mat2x3;
2508  typedef lowp_f64mat3x3 f64mat3x3;
2509  typedef lowp_f64mat4x3 f64mat4x3;
2510  typedef lowp_f64mat2x4 f64mat2x4;
2511  typedef lowp_f64mat3x4 f64mat3x4;
2512  typedef lowp_f64mat4x4 f64mat4x4;
2513  typedef lowp_f64quat f64quat;
2514 #elif(defined(GLM_PRECISION_MEDIUMP_DOUBLE))
2515  typedef mediump_f64vec1 f64vec1;
2516  typedef mediump_f64vec2 f64vec2;
2517  typedef mediump_f64vec3 f64vec3;
2518  typedef mediump_f64vec4 f64vec4;
2519  typedef mediump_f64mat2 f64mat2;
2520  typedef mediump_f64mat3 f64mat3;
2521  typedef mediump_f64mat4 f64mat4;
2522  typedef mediump_f64mat2x2 f64mat2x2;
2523  typedef mediump_f64mat3x2 f64mat3x2;
2524  typedef mediump_f64mat4x2 f64mat4x2;
2525  typedef mediump_f64mat2x3 f64mat2x3;
2526  typedef mediump_f64mat3x3 f64mat3x3;
2527  typedef mediump_f64mat4x3 f64mat4x3;
2528  typedef mediump_f64mat2x4 f64mat2x4;
2529  typedef mediump_f64mat3x4 f64mat3x4;
2530  typedef mediump_f64mat4x4 f64mat4x4;
2531  typedef mediump_f64quat f64quat;
2532 #else
2533  typedef highp_f64vec1 f64vec1;
2536 
2539  typedef highp_f64vec2 f64vec2;
2540 
2543  typedef highp_f64vec3 f64vec3;
2544 
2547  typedef highp_f64vec4 f64vec4;
2548 
2551  typedef highp_f64mat2x2 f64mat2x2;
2552 
2555  typedef highp_f64mat2x3 f64mat2x3;
2556 
2559  typedef highp_f64mat2x4 f64mat2x4;
2560 
2563  typedef highp_f64mat3x2 f64mat3x2;
2564 
2567  typedef highp_f64mat3x3 f64mat3x3;
2568 
2571  typedef highp_f64mat3x4 f64mat3x4;
2572 
2575  typedef highp_f64mat4x2 f64mat4x2;
2576 
2579  typedef highp_f64mat4x3 f64mat4x3;
2580 
2583  typedef highp_f64mat4x4 f64mat4x4;
2584 
2587  typedef f64mat2x2 f64mat2;
2588 
2591  typedef f64mat3x3 f64mat3;
2592 
2595  typedef f64mat4x4 f64mat4;
2596 
2599  typedef highp_f64quat f64quat;
2600 #endif
2601 }//namespace glm
detail::int8 highp_int8
High precision 8 bit signed integer type.
Definition: fwd.hpp:228
tvec4< u16, mediump > mediump_u16vec4
Medium precision 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1052
detail::uint64 lowp_uint64
Low precision 64 bit unsigned integer type.
Definition: fwd.hpp:747
highp_i16vec4 i16vec4
Default precision 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:488
highp_f32vec2 f32vec2
Default single-precision floating-point vector of 2 components.
Definition: fwd.hpp:2433
detail::uint8 lowp_uint8_t
Low precision 8 bit unsigned integer type.
Definition: fwd.hpp:752
tvec4< i16, lowp > lowp_i16vec4
Low precision 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:426
detail::int16 highp_i16
High precision 16 bit signed integer type.
Definition: fwd.hpp:264
mediump_f32mat2x2 mediump_f32mat2
Medium single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2019
highp_fmat4x4 highp_fmat4
High single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1913
tmat3x2< f32, highp > highp_fmat3x2
High single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:1877
highp_f32mat3x4 f32mat3x4
Default single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2465
tmat2x4< f32, mediump > mediump_f32mat2x4
Medium single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:1987
tmat3x4< f32, mediump > mediump_f32mat3x4
Medium single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:1999
tmat2x2< f32, mediump > mediump_fmat2x2
Medium single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1808
tvec2< i8, mediump > mediump_i8vec2
Medium precision 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:356
tvec1< u32, lowp > lowp_u32vec1
Low precision 32 bit unsigned integer scalar type.
Definition: fwd.hpp:1103
tvec4< i8, lowp > lowp_i8vec4
Low precision 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:347
detail::uint64 uint64_t
64 bit unsigned integer type.
Definition: fwd.hpp:921
highp_f32mat4x2 f32mat4x2
Default single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2469
highp_u16vec1 u16vec1
Default precision 16 bit unsigned integer scalar type.
Definition: fwd.hpp:1085
highp_f32vec1 fvec1
Default single-precision floating-point vector of 1 components.
Definition: fwd.hpp:2359
tmat4x3< f64, highp > highp_f64mat4x3
High double-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2234
detail::uint16 highp_u16
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:873
tvec1< u64, lowp > lowp_u64vec1
Low precision 64 bit unsigned integer scalar type.
Definition: fwd.hpp:1262
tvec2< i8, highp > highp_i8vec2
High precision 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:373
tmat3x2< f32, mediump > mediump_fmat3x2
Medium single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:1820
tvec4< i64, highp > highp_i64vec4
High precision 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:699
tvec2< f64, mediump > mediump_f64vec2
Medium double-precision floating-point vector of 2 components.
Definition: fwd.hpp:1715
tvec4< u32, lowp > lowp_u32vec4
Low precision 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1115
highp_i32vec1 i32vec1
Default precision 32 bit signed integer scalar type.
Definition: fwd.hpp:555
tvec2< f64, highp > highp_f64vec2
High double-precision floating-point vector of 2 components.
Definition: fwd.hpp:1731
tvec2< f64, lowp > lowp_f64vec2
Low double-precision floating-point vector of 2 components.
Definition: fwd.hpp:1699
tmat2x3< f32, mediump > mediump_f32mat2x3
Medium single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:1983
tvec2< u64, lowp > lowp_u64vec2
Low precision 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1266
detail::int16 mediump_int16
Medium precision 16 bit signed integer type.
Definition: fwd.hpp:184
highp_float64_t float64_t
Default 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1533
tmat3x4< f32, highp > highp_f32mat3x4
High single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2056
detail::uint32 lowp_u32
Low precision 32 bit unsigned integer type.
Definition: fwd.hpp:777
highp_u64vec2 u64vec2
Default precision 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1327
tmat4x2< f32, mediump > mediump_fmat4x2
Medium single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:1832
tmat2x3< f32, highp > highp_fmat2x3
High single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:1869
highp_i16vec2 i16vec2
Default precision 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:480
OpenGL Mathematics (glm.g-truc.net)
detail::float32 mediump_float32
Medium 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1418
detail::uint32 uint32_t
32 bit unsigned integer type.
Definition: fwd.hpp:917
tvec2< i32, highp > highp_i32vec2
High precision 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:532
tmat2x2< f64, highp > highp_f64mat2x2
High double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2206
detail::int32 int32_t
32 bit signed integer type.
Definition: fwd.hpp:308
highp_u16vec2 u16vec2
Default precision 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1089
detail::float32 mediump_float32_t
Medium 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1426
tvec3< u32, mediump > mediump_u32vec3
Medium precision 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1128
tvec1< i32, mediump > mediump_i32vec1
Medium precision 32 bit signed integer scalar type.
Definition: fwd.hpp:511
highp_f32mat4x4 f32mat4x4
Default single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2477
tvec4< float, lowp > lowp_vec4
4 components vector of low single-precision floating-point numbers.
Definition: type_vec.hpp:298
tvec1< u16, highp > highp_u16vec1
High precision 16 bit unsigned integer scalar type.
Definition: fwd.hpp:1057
tvec4< i64, lowp > lowp_i64vec4
Low precision 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:665
highp_i32vec4 i32vec4
Default precision 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:567
tvec3< i64, highp > highp_i64vec3
High precision 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:695
highp_f32mat3x2 fmat3x2
Default single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2387
tvec2< float, lowp > lowp_vec2
2 components vector of low single-precision floating-point numbers.
Definition: type_vec.hpp:83
tmat3x2< f32, lowp > lowp_f32mat3x2
Low single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:1934
detail::uint64 mediump_uint64
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:799
tvec3< u8, lowp > lowp_u8vec3
Low precision 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:952
detail::uint16 uint16
16 bit unsigned integer type.
Definition: type_int.hpp:230
highp_u64vec1 u64vec1
Default precision 64 bit unsigned integer scalar type.
Definition: fwd.hpp:1323
detail::int64 lowp_i64
Low precision 64 bit signed integer type.
Definition: fwd.hpp:176
detail::int32 highp_int32_t
32 bit signed integer type.
Definition: fwd.hpp:252
tvec4< i16, highp > highp_i16vec4
High precision 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:460
tvec4< u8, mediump > mediump_u8vec4
Medium precision 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:973
tvec4< i32, highp > highp_i32vec4
High precision 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:540
detail::int64 lowp_int64
Low precision 64 bit signed integer type.
Definition: fwd.hpp:144
detail::int16 lowp_int16_t
Low precision 16 bit signed integer type.
Definition: fwd.hpp:152
highp_fmat2x2 highp_fmat2
High single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1905
detail::int32 lowp_int32
Low precision 32 bit signed integer type.
Definition: fwd.hpp:140
tmat2x3< f64, highp > highp_f64mat2x3
High double-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2210
lowp_fmat2x2 lowp_fmat2
Low single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1791
tmat2x2< f32, highp > highp_f32mat2x2
High single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2036
detail::float64 highp_float64_t
High 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1455
tvec2< f32, mediump > mediump_f32vec2
Medium single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1666
detail::uint8 lowp_u8
Low precision 8 bit unsigned integer type.
Definition: fwd.hpp:769
tvec4< i32, lowp > lowp_i32vec4
Low precision 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:506
tmat4x3< f32, mediump > mediump_fmat4x3
Medium single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:1836
mediump_f64mat4x4 mediump_f64mat4
Medium double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2198
lowp_fmat3x3 lowp_fmat3
Low single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1795
detail::uint16 mediump_uint16_t
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:807
highp_f32mat3x2 f32mat3x2
Default single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2457
detail::uint8 u8
8 bit unsigned integer type.
Definition: fwd.hpp:926
detail::uint16 uint16_t
16 bit unsigned integer type.
Definition: fwd.hpp:913
detail::uint8 highp_uint8_t
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:853
highp_f64mat4x2 f64mat4x2
Default double-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2575
tmat4x4< f64, lowp > lowp_f64mat4x4
Low double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2125
tvec1< f32, highp > highp_f32vec1
High single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1678
highp_i32vec3 i32vec3
Default precision 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:563
tquat< f64, lowp > lowp_f64quat
Low double-precision floating-point quaternion.
Definition: fwd.hpp:2265
tvec2< f32, highp > highp_f32vec2
High single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1682
tmat4x4< f32, mediump > mediump_fmat4x4
Medium single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1840
tquat< f32, mediump > mediump_f32quat
Medium single-precision floating-point quaternion.
Definition: fwd.hpp:2269
tmat2x4< f32, mediump > mediump_fmat2x4
Medium single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:1816
tvec1< float, highp > highp_vec1
High single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1613
detail::float64 lowp_float64
Low 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1348
highp_f32mat4x4 fmat4x4
Default single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2407
highp_u8vec1 u8vec1
Default precision 8 bit unsigned integer scalar type.
Definition: fwd.hpp:1005
tmat4x4< f32, highp > highp_fmat4x4
High single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1897
tmat3x3< f32, highp > highp_fmat3x3
High single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1881
tvec1< float, mediump > mediump_vec1
Medium single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1580
tvec4< f32, highp > highp_f32vec4
High single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1690
detail::int8 lowp_i8
Low precision 8 bit signed integer type.
Definition: fwd.hpp:164
detail::int8 highp_i8
High precision 8 bit signed integer type.
Definition: fwd.hpp:260
tmat3x4< f64, mediump > mediump_f64mat3x4
Medium double-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2170
tmat3x3< f64, mediump > mediump_f64mat3x3
Medium double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2166
detail::uint64 uint64
64 bit unsigned integer type.
Definition: type_int.hpp:232
float float32
Default 32 bit single-precision floating-point scalar.
Definition: type_float.hpp:84
tvec4< i64, mediump > mediump_i64vec4
Medium precision 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:682
tvec3< i16, lowp > lowp_i16vec3
Low precision 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:422
highp_f32mat3x3 f32mat3x3
Default single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2461
tvec1< u32, highp > highp_u32vec1
High precision 32 bit unsigned integer scalar type.
Definition: fwd.hpp:1137
tmat3x4< f64, highp > highp_f64mat3x4
High double-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2226
detail::int16 lowp_i16
Low precision 16 bit signed integer type.
Definition: fwd.hpp:168
detail::int64 highp_i64
High precision 64 bit signed integer type.
Definition: fwd.hpp:272
tmat2x4< f64, lowp > lowp_f64mat2x4
Low double-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2101
highp_f32vec3 fvec3
Default single-precision floating-point vector of 3 components.
Definition: fwd.hpp:2367
highp_u32vec4 u32vec4
Default precision 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1176
detail::int16 int16_t
16 bit signed integer type.
Definition: fwd.hpp:304
tvec4< float, mediump > mediump_vec4
4 components vector of medium single-precision floating-point numbers.
Definition: type_vec.hpp:292
highp_i16vec3 i16vec3
Default precision 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:484
detail::int16 highp_int16
High precision 16 bit signed integer type.
Definition: fwd.hpp:232
detail::int8 lowp_int8
Low precision 8 bit signed integer type.
Definition: fwd.hpp:132
tquat< f64, mediump > mediump_f64quat
Medium double-precision floating-point quaternion.
Definition: fwd.hpp:2273
detail::int16 lowp_int16
Low precision 16 bit signed integer type.
Definition: fwd.hpp:136
lowp_f64mat3x3 lowp_f64mat3
Low double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2137
highp_f64vec2 f64vec2
Default double-precision floating-point vector of 2 components.
Definition: fwd.hpp:2539
tvec1< u16, mediump > mediump_u16vec1
Medium precision 16 bit unsigned integer scalar type.
Definition: fwd.hpp:1040
detail::int64 i64
64 bit signed integer type.
Definition: fwd.hpp:329
OpenGL Mathematics (glm.g-truc.net)
detail::int64 mediump_int64_t
Medium precision 64 bit signed integer type.
Definition: fwd.hpp:208
tmat3x4< f32, lowp > lowp_fmat3x4
Low single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:1771
highp_f64mat2x4 f64mat2x4
Default double-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2559
tmat4x2< f32, lowp > lowp_fmat4x2
Low single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:1775
tmat4x2< f64, lowp > lowp_f64mat4x2
Low double-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2117
detail::uint32 mediump_uint32
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:795
f32mat3x3 f32mat3
Default single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2485
detail::uint8 mediump_u8
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:819
detail::uint64 u64
64 bit unsigned integer type.
Definition: fwd.hpp:938
tmat3x3< f64, highp > highp_f64mat3x3
High double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2222
tvec1< i32, highp > highp_i32vec1
High precision 32 bit signed integer scalar type.
Definition: fwd.hpp:528
tvec4< i16, mediump > mediump_i16vec4
Medium precision 16 bit signed integer vector of 4 components type.
Definition: fwd.hpp:443
tvec4< f32, lowp > lowp_f32vec4
Low single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1658
highp_u64vec3 u64vec3
Default precision 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1331
tvec1< i64, mediump > mediump_i64vec1
Medium precision 64 bit signed integer scalar type.
Definition: fwd.hpp:670
tvec2< i32, mediump > mediump_i32vec2
Medium precision 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:515
tvec3< u32, highp > highp_u32vec3
High precision 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1145
tmat4x4< f32, highp > highp_f32mat4x4
High single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2068
highp_f64quat f64quat
Default double-precision floating-point quaternion.
Definition: fwd.hpp:2599
float64 mediump_f64
Medium 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1438
tvec3< float, highp > highp_vec3
3 components vector of high single-precision floating-point numbers.
Definition: type_vec.hpp:180
highp_f32mat2x3 f32mat2x3
Default single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2449
detail::uint64 highp_u64
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:881
detail::int64 highp_int64
High precision 64 bit signed integer type.
Definition: fwd.hpp:240
tvec1< i8, highp > highp_i8vec1
High precision 8 bit signed integer scalar type.
Definition: fwd.hpp:369
tquat< f64, highp > highp_f64quat
High double-precision floating-point quaternion.
Definition: fwd.hpp:2281
detail::float64 highp_float64
High 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1447
tvec1< i64, lowp > lowp_i64vec1
Low precision 64 bit signed integer scalar type.
Definition: fwd.hpp:653
lowp_f64mat4x4 lowp_f64mat4
Low double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2141
detail::uint8 uint8
8 bit unsigned integer type.
Definition: type_int.hpp:229
tvec2< i64, lowp > lowp_i64vec2
Low precision 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:657
tvec2< float, highp > highp_fvec2
High Single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1633
tvec2< i64, mediump > mediump_i64vec2
Medium precision 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:674
detail::uint32 uint32
32 bit unsigned integer type.
Definition: type_int.hpp:231
detail::uint32 mediump_u32
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:827
tvec4< float, mediump > mediump_fvec4
Medium Single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1608
detail::int8 mediump_int8
Medium precision 8 bit signed integer type.
Definition: fwd.hpp:180
tmat2x2< f64, lowp > lowp_f64mat2x2
Low double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2093
fmat3x3 fmat3
Default single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2415
detail::int8 int8
8 bit signed integer type.
Definition: type_int.hpp:224
highp_f32mat2x2 highp_f32mat2
High single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2076
tvec1< u8, lowp > lowp_u8vec1
Low precision 8 bit unsigned integer scalar type.
Definition: fwd.hpp:944
tmat4x3< f64, mediump > mediump_f64mat4x3
Medium double-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2178
tmat4x2< f32, mediump > mediump_f32mat4x2
Medium single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2003
detail::float64 lowp_float64_t
Low 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1356
f32mat2x2 f32mat2
Default single-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2481
tvec2< i32, lowp > lowp_i32vec2
Low precision 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:498
detail::uint32 mediump_uint32_t
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:811
tvec2< u64, mediump > mediump_u64vec2
Medium precision 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1283
tvec4< u64, mediump > mediump_u64vec4
Medium precision 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1291
tvec1< f32, lowp > lowp_f32vec1
Low single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1646
tmat2x4< f32, lowp > lowp_f32mat2x4
Low single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:1930
detail::uint8 mediump_uint8
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:787
highp_f32vec3 f32vec3
Default single-precision floating-point vector of 3 components.
Definition: fwd.hpp:2437
highp_f64mat2x2 highp_f64mat2
High double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2246
highp_f32mat4x3 f32mat4x3
Default single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2473
tvec3< i32, lowp > lowp_i32vec3
Low precision 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:502
tmat2x4< f64, mediump > mediump_f64mat2x4
Medium double-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2158
tvec1< u32, mediump > mediump_u32vec1
Medium precision 32 bit unsigned integer scalar type.
Definition: fwd.hpp:1120
tvec3< i32, highp > highp_i32vec3
High precision 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:536
highp_f32mat2x4 f32mat2x4
Default single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2453
tmat2x3< f64, lowp > lowp_f64mat2x3
Low double-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2097
highp_f64vec4 f64vec4
Default double-precision floating-point vector of 4 components.
Definition: fwd.hpp:2547
detail::uint8 mediump_uint8_t
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:803
tvec3< i64, mediump > mediump_i64vec3
Medium precision 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:678
tvec3< float, highp > highp_fvec3
High Single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1637
tvec1< i64, highp > highp_i64vec1
High precision 64 bit signed integer scalar type.
Definition: fwd.hpp:687
tvec4< u8, lowp > lowp_u8vec4
Low precision 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:956
tvec3< u32, lowp > lowp_u32vec3
Low precision 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1111
detail::uint16 u16
16 bit unsigned integer type.
Definition: fwd.hpp:930
detail::uint32 u32
32 bit unsigned integer type.
Definition: fwd.hpp:934
mediump_fmat4x4 mediump_fmat4
Medium single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1856
tvec1< u8, mediump > mediump_u8vec1
Medium precision 8 bit unsigned integer scalar type.
Definition: fwd.hpp:961
highp_f32mat4x2 fmat4x2
Default single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2399
tvec1< f64, lowp > lowp_f64vec1
Low double-precision floating-point vector of 1 component.
Definition: fwd.hpp:1695
fmat2x2 fmat2
Default single-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2411
f64mat3x3 f64mat3
Default double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2591
detail::int8 mediump_i8
Medium precision 8 bit signed integer type.
Definition: fwd.hpp:212
tvec2< u8, highp > highp_u8vec2
High precision 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:982
tvec3< u8, highp > highp_u8vec3
High precision 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:986
lowp_f64mat2x2 lowp_f64mat2
Low double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2133
tvec4< u64, highp > highp_u64vec4
High precision 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1308
float32 mediump_f32
Medium 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1434
tvec3< f32, mediump > mediump_f32vec3
Medium single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1670
highp_f64mat3x3 f64mat3x3
Default double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2567
tmat3x3< f32, lowp > lowp_f32mat3x3
Low single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1938
tvec3< float, lowp > lowp_vec3
3 components vector of low single-precision floating-point numbers.
Definition: type_vec.hpp:194
tvec1< i16, lowp > lowp_i16vec1
Low precision 16 bit signed integer scalar type.
Definition: fwd.hpp:414
tvec3< i8, highp > highp_i8vec3
High precision 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:377
detail::int16 mediump_int16_t
Medium precision 16 bit signed integer type.
Definition: fwd.hpp:200
detail::uint16 mediump_uint16
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:791
detail::int32 highp_i32
High precision 32 bit signed integer type.
Definition: fwd.hpp:268
highp_i64vec2 i64vec2
Default precision 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:718
tvec2< float, highp > highp_vec2
2 components vector of high single-precision floating-point numbers.
Definition: type_vec.hpp:69
highp_i8vec2 i8vec2
Default precision 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:400
tmat2x3< f32, mediump > mediump_fmat2x3
Medium single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:1812
tvec1< u16, lowp > lowp_u16vec1
Low precision 16 bit unsigned integer scalar type.
Definition: fwd.hpp:1023
highp_float32_t float32_t
Default 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1529
tmat3x4< f32, mediump > mediump_fmat3x4
Medium single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:1828
tvec4< u16, lowp > lowp_u16vec4
Low precision 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1035
lowp_f32mat3x3 lowp_f32mat3
Low single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1966
mediump_fmat3x3 mediump_fmat3
Medium single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1852
detail::uint8 lowp_uint8
Low precision 8 bit unsigned integer type.
Definition: fwd.hpp:735
highp_u8vec3 u8vec3
Default precision 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1013
tmat4x3< f32, lowp > lowp_fmat4x3
Low single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:1779
detail::uint32 highp_u32
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:877
highp_f32mat3x3 fmat3x3
Default single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2391
tvec1< u64, mediump > mediump_u64vec1
Medium precision 64 bit unsigned integer scalar type.
Definition: fwd.hpp:1279
highp_i8vec4 i8vec4
Default precision 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:408
tvec3< f32, lowp > lowp_f32vec3
Low single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1654
tvec1< i16, highp > highp_i16vec1
High precision 16 bit signed integer scalar type.
Definition: fwd.hpp:448
tvec2< u32, lowp > lowp_u32vec2
Low precision 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1107
highp_float64_t f64
Default 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1541
tmat3x3< f32, highp > highp_f32mat3x3
High single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2052
tmat2x2< f32, highp > highp_fmat2x2
High single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1865
tvec1< float, mediump > mediump_fvec1
Medium single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1596
tvec1< i8, mediump > mediump_i8vec1
Medium precision 8 bit signed integer scalar type.
Definition: fwd.hpp:352
tmat4x3< f32, highp > highp_fmat4x3
High single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:1893
highp_u64vec4 u64vec4
Default precision 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1335
detail::uint32 highp_uint32
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:845
tmat2x4< f64, highp > highp_f64mat2x4
High double-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2214
detail::uint64 mediump_uint64_t
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:815
quat fquat
Quaternion of default single-precision floating-point numbers.
Definition: fwd.hpp:90
highp_f64mat2x3 f64mat2x3
Default double-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2555
tvec1< float, lowp > lowp_vec1
Low single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1547
float32 highp_f32
High 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1459
highp_u16vec3 u16vec3
Default precision 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1093
tmat2x3< f32, lowp > lowp_fmat2x3
Low single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:1755
detail::int32 int32
32 bit signed integer type.
Definition: type_int.hpp:226
tvec3< i16, mediump > mediump_i16vec3
Medium precision 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:439
tvec3< i64, lowp > lowp_i64vec3
Low precision 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:661
detail::uint8 highp_u8
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:869
detail::int32 lowp_int32_t
Low precision 32 bit signed integer type.
Definition: fwd.hpp:156
tvec3< u16, highp > highp_u16vec3
High precision 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1065
detail::int8 mediump_int8_t
Medium precision 8 bit signed integer type.
Definition: fwd.hpp:196
detail::float32 highp_float32_t
High 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1451
highp_i64vec1 i64vec1
Default precision 64 bit signed integer scalar type.
Definition: fwd.hpp:714
highp_i8vec1 i8vec1
Default precision 8 bit signed integer scalar type.
Definition: fwd.hpp:396
detail::uint32 highp_uint32_t
Medium precision 32 bit unsigned integer type.
Definition: fwd.hpp:861
highp_f32vec2 fvec2
Default single-precision floating-point vector of 2 components.
Definition: fwd.hpp:2363
mediump_f32mat4x4 mediump_f32mat4
Medium single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2027
tvec4< u32, mediump > mediump_u32vec4
Medium precision 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1132
tvec3< f64, mediump > mediump_f64vec3
Medium double-precision floating-point vector of 3 components.
Definition: fwd.hpp:1719
lowp_fmat4x4 lowp_fmat4
Low single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1799
highp_float32_t f32
Default 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1537
tmat4x4< f64, highp > highp_f64mat4x4
High double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2238
tmat3x3< f32, mediump > mediump_fmat3x3
Medium single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1824
tvec2< float, mediump > mediump_fvec2
Medium Single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1600
tvec3< float, lowp > lowp_fvec3
Low single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1571
tvec3< float, mediump > mediump_fvec3
Medium Single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1604
detail::int8 lowp_int8_t
Low precision 8 bit signed integer type.
Definition: fwd.hpp:148
highp_f32vec4 f32vec4
Default single-precision floating-point vector of 4 components.
Definition: fwd.hpp:2441
tvec3< f32, highp > highp_f32vec3
High single-precision floating-point vector of 3 components.
Definition: fwd.hpp:1686
detail::float32 lowp_float32_t
Low 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1352
f32mat4x4 f32mat4
Default single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2489
tmat3x2< f32, mediump > mediump_f32mat3x2
Medium single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:1991
detail::int64 mediump_int64
Medium precision 64 bit signed integer type.
Definition: fwd.hpp:192
detail::uint64 mediump_u64
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:831
highp_f32mat2x2 fmat2x2
Default single-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2375
highp_i64vec3 i64vec3
Default precision 64 bit signed integer vector of 3 components type.
Definition: fwd.hpp:722
float32 lowp_f32
Low 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1360
tquat< f32, lowp > lowp_f32quat
Low single-precision floating-point quaternion.
Definition: fwd.hpp:2261
tvec4< u16, highp > highp_u16vec4
High precision 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1069
tvec4< float, lowp > lowp_fvec4
Low single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1575
detail::float64 mediump_float64_t
Medium 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1430
tmat2x2< f32, lowp > lowp_fmat2x2
Low single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1751
detail::int16 int16
16 bit signed integer type.
Definition: type_int.hpp:225
detail::uint64 lowp_uint64_t
Low precision 64 bit unsigned integer type.
Definition: fwd.hpp:764
highp_u32vec1 u32vec1
Default precision 32 bit unsigned integer scalar type.
Definition: fwd.hpp:1164
detail::int64 int64_t
64 bit signed integer type.
Definition: fwd.hpp:312
detail::int32 i32
32 bit signed integer type.
Definition: fwd.hpp:325
detail::uint32 lowp_uint32_t
Low precision 32 bit unsigned integer type.
Definition: fwd.hpp:760
tvec4< u64, lowp > lowp_u64vec4
Low precision 64 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1274
float64 lowp_f64
Low 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1364
tvec4< u32, highp > highp_u32vec4
High precision 32 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1149
mediump_f64mat3x3 mediump_f64mat3
Medium double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2194
tvec1< f32, mediump > mediump_f32vec1
Medium single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1662
tmat2x4< f32, highp > highp_fmat2x4
High single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:1873
highp_f32mat2x2 f32mat2x2
Default single-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2445
tvec3< f64, lowp > lowp_f64vec3
Low double-precision floating-point vector of 3 components.
Definition: fwd.hpp:1703
highp_f32quat f32quat
Default single-precision floating-point quaternion.
Definition: fwd.hpp:2493
tvec4< float, highp > highp_vec4
4 components vector of high single-precision floating-point numbers.
Definition: type_vec.hpp:286
tvec2< u8, lowp > lowp_u8vec2
Low precision 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:948
detail::int16 i16
16 bit signed integer type.
Definition: fwd.hpp:321
tvec2< i16, mediump > mediump_i16vec2
Medium precision 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:435
highp_f64mat4x4 highp_f64mat4
High double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2254
tmat4x2< f32, highp > highp_fmat4x2
High single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:1889
mediump_f64mat2x2 mediump_f64mat2
Medium double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2190
highp_u8vec4 u8vec4
Default precision 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1017
highp_i64vec4 i64vec4
Default precision 64 bit signed integer vector of 4 components type.
Definition: fwd.hpp:726
detail::int64 highp_int64_t
High precision 64 bit signed integer type.
Definition: fwd.hpp:256
detail::uint16 highp_uint16
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:841
tmat2x4< f32, lowp > lowp_fmat2x4
Low single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:1759
f64mat2x2 f64mat2
Default double-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2587
highp_fmat3x3 highp_fmat3
High single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1909
tvec2< u8, mediump > mediump_u8vec2
Medium precision 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:965
tmat4x2< f64, highp > highp_f64mat4x2
High double-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2230
detail::int64 lowp_int64_t
Low precision 64 bit signed integer type.
Definition: fwd.hpp:160
tmat3x2< f32, highp > highp_f32mat3x2
High single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2048
detail::int16 highp_int16_t
High precision 16 bit signed integer type.
Definition: fwd.hpp:248
tvec3< u8, mediump > mediump_u8vec3
Medium precision 8 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:969
tmat2x2< f64, mediump > mediump_f64mat2x2
Medium double-precision floating-point 1x1 matrix.
Definition: fwd.hpp:2150
detail::int32 mediump_i32
Medium precision 32 bit signed integer type.
Definition: fwd.hpp:220
tvec2< i64, highp > highp_i64vec2
High precision 64 bit signed integer vector of 2 components type.
Definition: fwd.hpp:691
detail::uint8 highp_uint8
Medium precision 8 bit unsigned integer type.
Definition: fwd.hpp:837
tmat4x3< f32, mediump > mediump_f32mat4x3
Medium single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2007
detail::int8 highp_int8_t
High precision 8 bit signed integer type.
Definition: fwd.hpp:244
detail::int8 int8_t
8 bit signed integer type.
Definition: fwd.hpp:300
highp_u32vec3 u32vec3
Default precision 32 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1172
mediump_fmat2x2 mediump_fmat2
Medium single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1848
tmat3x4< f64, lowp > lowp_f64mat3x4
Low double-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2113
tmat2x2< f32, lowp > lowp_f32mat2x2
Low single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1922
tmat4x4< f64, mediump > mediump_f64mat4x4
Medium double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2182
highp_i16vec1 i16vec1
Default precision 16 bit signed integer scalar type.
Definition: fwd.hpp:476
detail::uint64 lowp_u64
Low precision 64 bit unsigned integer type.
Definition: fwd.hpp:781
Definition: _noise.hpp:39
tvec3< u64, mediump > mediump_u64vec3
Medium precision 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1287
highp_f32vec1 f32vec1
Default single-precision floating-point vector of 1 components.
Definition: fwd.hpp:2429
tvec1< f64, highp > highp_f64vec1
High double-precision floating-point vector of 1 component.
Definition: fwd.hpp:1727
highp_f32mat4x3 fmat4x3
Default single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2403
detail::int64 mediump_i64
Medium precision 64 bit signed integer type.
Definition: fwd.hpp:224
tvec4< f64, lowp > lowp_f64vec4
Low double-precision floating-point vector of 4 components.
Definition: fwd.hpp:1707
tquat< f32, highp > highp_f32quat
High single-precision floating-point quaternion.
Definition: fwd.hpp:2277
tmat3x3< f64, lowp > lowp_f64mat3x3
Low double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2109
tmat4x2< f32, highp > highp_f32mat4x2
High single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2060
tmat3x2< f64, highp > highp_f64mat3x2
High double-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2218
tvec4< float, highp > highp_fvec4
High Single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1641
highp_f64mat4x4 f64mat4x4
Default double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2583
float64 highp_f64
High 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1463
detail::uint16 lowp_uint16_t
Low precision 16 bit unsigned integer type.
Definition: fwd.hpp:756
tvec2< u32, mediump > mediump_u32vec2
Medium precision 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1124
tmat3x2< f64, lowp > lowp_f64mat3x2
Low double-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2105
tvec3< i16, highp > highp_i16vec3
High precision 16 bit signed integer vector of 3 components type.
Definition: fwd.hpp:456
tmat4x3< f64, lowp > lowp_f64mat4x3
Low double-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2121
tmat4x4< f32, mediump > mediump_f32mat4x4
Medium single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2011
OpenGL Mathematics (glm.g-truc.net)
f64mat4x4 f64mat4
Default double-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2595
tvec3< u16, mediump > mediump_u16vec3
Medium precision 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1048
tvec3< f64, highp > highp_f64vec3
High double-precision floating-point vector of 3 components.
Definition: fwd.hpp:1735
tmat4x3< f32, lowp > lowp_f32mat4x3
Low single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:1950
tvec3< i32, mediump > mediump_i32vec3
Medium precision 32 bit signed integer vector of 3 components type.
Definition: fwd.hpp:519
highp_f64mat3x2 f64mat3x2
Default double-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2563
tvec1< f64, mediump > mediump_f64vec1
Medium double-precision floating-point vector of 1 component.
Definition: fwd.hpp:1711
tmat4x2< f64, mediump > mediump_f64mat4x2
Medium double-precision floating-point 4x2 matrix.
Definition: fwd.hpp:2174
tmat2x2< f32, mediump > mediump_f32mat2x2
High single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1979
tmat4x4< f32, lowp > lowp_f32mat4x4
Low single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1954
tvec2< u16, mediump > mediump_u16vec2
Medium precision 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1044
highp_f64mat3x4 f64mat3x4
Default double-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2571
tvec2< u16, highp > highp_u16vec2
High precision 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1061
detail::uint16 lowp_u16
Low precision 16 bit unsigned integer type.
Definition: fwd.hpp:773
fmat4x4 fmat4
Default single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2419
tmat2x3< f32, lowp > lowp_f32mat2x3
Low single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:1926
highp_f32mat4x4 highp_f32mat4
High single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:2084
tvec4< f32, mediump > mediump_f32vec4
Medium single-precision floating-point vector of 4 components.
Definition: fwd.hpp:1674
mediump_f32mat3x3 mediump_f32mat3
Medium single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2023
tvec2< u16, lowp > lowp_u16vec2
Low precision 16 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1027
tvec2< i16, highp > highp_i16vec2
High precision 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:452
tvec3< float, mediump > mediump_vec3
3 components vector of medium single-precision floating-point numbers.
Definition: type_vec.hpp:187
tvec3< u64, lowp > lowp_u64vec3
Low precision 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1270
highp_f64mat3x3 highp_f64mat3
High double-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2250
detail::uint64 highp_uint64
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:849
detail::uint16 lowp_uint16
Low precision 16 bit unsigned integer type.
Definition: fwd.hpp:739
tvec1< float, lowp > lowp_fvec1
Low single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1563
detail::int8 i8
8 bit signed integer type.
Definition: fwd.hpp:317
tmat3x3< f32, mediump > mediump_f32mat3x3
Medium single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1995
tvec3< u16, lowp > lowp_u16vec3
Low precision 16 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1031
tvec2< u32, highp > highp_u32vec2
High precision 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1141
highp_f64vec3 f64vec3
Default double-precision floating-point vector of 3 components.
Definition: fwd.hpp:2543
tmat3x2< f64, mediump > mediump_f64mat3x2
Medium double-precision floating-point 3x2 matrix.
Definition: fwd.hpp:2162
tvec1< float, highp > highp_fvec1
High single-precision floating-point vector of 1 component.
Definition: fwd.hpp:1629
highp_u16vec4 u16vec4
Default precision 16 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:1097
tmat4x4< f32, lowp > lowp_fmat4x4
Low single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1783
highp_f32mat3x4 fmat3x4
Default single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:2395
lowp_f32mat4x4 lowp_f32mat4
Low single-precision floating-point 4x4 matrix.
Definition: fwd.hpp:1970
highp_f32vec4 fvec4
Default single-precision floating-point vector of 4 components.
Definition: fwd.hpp:2371
lowp_f32mat2x2 lowp_f32mat2
Low single-precision floating-point 1x1 matrix.
Definition: fwd.hpp:1962
tvec2< u64, highp > highp_u64vec2
High precision 64 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1300
tmat4x3< f32, highp > highp_f32mat4x3
High single-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2064
detail::float32 highp_float32
High 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1443
detail::int32 highp_int32
High precision 32 bit signed integer type.
Definition: fwd.hpp:236
highp_u8vec2 u8vec2
Default precision 8 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1009
detail::int32 mediump_int32
Medium precision 32 bit signed integer type.
Definition: fwd.hpp:188
tvec1< u64, highp > highp_u64vec1
High precision 64 bit unsigned integer scalar type.
Definition: fwd.hpp:1296
detail::int32 mediump_int32_t
Medium precision 32 bit signed integer type.
Definition: fwd.hpp:204
tvec3< i8, lowp > lowp_i8vec3
Low precision 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:343
detail::int32 lowp_i32
Low precision 32 bit signed integer type.
Definition: fwd.hpp:172
tmat3x2< f32, lowp > lowp_fmat3x2
Low single-precision floating-point 3x2 matrix.
Definition: fwd.hpp:1763
detail::uint8 uint8_t
8 bit unsigned integer type.
Definition: fwd.hpp:909
highp_i8vec3 i8vec3
Default precision 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:404
tmat3x4< f32, highp > highp_fmat3x4
High single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:1885
detail::uint64 highp_uint64_t
Medium precision 64 bit unsigned integer type.
Definition: fwd.hpp:865
tmat2x4< f32, highp > highp_f32mat2x4
High single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2044
detail::uint32 lowp_uint32
Low precision 32 bit unsigned integer type.
Definition: fwd.hpp:743
highp_f64mat2x2 f64mat2x2
Default double-precision floating-point 2x2 matrix.
Definition: fwd.hpp:2551
tmat3x4< f32, lowp > lowp_f32mat3x4
Low single-precision floating-point 3x4 matrix.
Definition: fwd.hpp:1942
tvec1< i8, lowp > lowp_i8vec1
Low precision 8 bit signed integer scalar type.
Definition: fwd.hpp:335
tvec4< f64, mediump > mediump_f64vec4
Medium double-precision floating-point vector of 4 components.
Definition: fwd.hpp:1723
tvec2< float, mediump > mediump_vec2
2 components vector of medium single-precision floating-point numbers.
Definition: type_vec.hpp:76
detail::uint16 mediump_u16
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:823
tmat2x3< f32, highp > highp_f32mat2x3
High single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2040
detail::uint16 highp_uint16_t
Medium precision 16 bit unsigned integer type.
Definition: fwd.hpp:857
tvec1< i32, lowp > lowp_i32vec1
Low precision 32 bit signed integer scalar type.
Definition: fwd.hpp:494
tmat4x2< f32, lowp > lowp_f32mat4x2
Low single-precision floating-point 4x2 matrix.
Definition: fwd.hpp:1946
highp_f32mat2x3 fmat2x3
Default single-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2379
tvec4< u8, highp > highp_u8vec4
High precision 8 bit unsigned integer vector of 4 components type.
Definition: fwd.hpp:990
tvec4< f64, highp > highp_f64vec4
High double-precision floating-point vector of 4 components.
Definition: fwd.hpp:1739
tvec4< i32, mediump > mediump_i32vec4
Medium precision 32 bit signed integer vector of 4 components type.
Definition: fwd.hpp:523
tvec1< u8, highp > highp_u8vec1
High precision 8 bit unsigned integer scalar type.
Definition: fwd.hpp:978
tvec4< i8, mediump > mediump_i8vec4
Medium precision 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:364
highp_f32mat3x3 highp_f32mat3
High single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:2080
tvec2< i8, lowp > lowp_i8vec2
Low precision 8 bit signed integer vector of 2 components type.
Definition: fwd.hpp:339
tvec3< i8, mediump > mediump_i8vec3
Medium precision 8 bit signed integer vector of 3 components type.
Definition: fwd.hpp:360
detail::float32 lowp_float32
Low 32 bit single-precision floating-point scalar.
Definition: fwd.hpp:1344
highp_f64mat4x3 f64mat4x3
Default double-precision floating-point 4x3 matrix.
Definition: fwd.hpp:2579
tvec2< i16, lowp > lowp_i16vec2
Low precision 16 bit signed integer vector of 2 components type.
Definition: fwd.hpp:418
tvec3< u64, highp > highp_u64vec3
High precision 64 bit unsigned integer vector of 3 components type.
Definition: fwd.hpp:1304
tvec2< float, lowp > lowp_fvec2
Low single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1567
OpenGL Mathematics (glm.g-truc.net)
highp_f32mat2x4 fmat2x4
Default single-precision floating-point 2x4 matrix.
Definition: fwd.hpp:2383
detail::int64 int64
64 bit signed integer type.
Definition: type_int.hpp:227
tmat2x3< f64, mediump > mediump_f64mat2x3
Medium double-precision floating-point 2x3 matrix.
Definition: fwd.hpp:2154
double float64
Default 64 bit double-precision floating-point scalar.
Definition: type_float.hpp:85
highp_f64vec1 f64vec1
Default double-precision floating-point vector of 1 components.
Definition: fwd.hpp:2535
tvec4< i8, highp > highp_i8vec4
High precision 8 bit signed integer vector of 4 components type.
Definition: fwd.hpp:381
tvec2< f32, lowp > lowp_f32vec2
Low single-precision floating-point vector of 2 components.
Definition: fwd.hpp:1650
highp_i32vec2 i32vec2
Default precision 32 bit signed integer vector of 2 components type.
Definition: fwd.hpp:559
detail::int16 mediump_i16
Medium precision 16 bit signed integer type.
Definition: fwd.hpp:216
tvec1< i16, mediump > mediump_i16vec1
Medium precision 16 bit signed integer scalar type.
Definition: fwd.hpp:431
detail::float64 mediump_float64
Medium 64 bit double-precision floating-point scalar.
Definition: fwd.hpp:1422
highp_u32vec2 u32vec2
Default precision 32 bit unsigned integer vector of 2 components type.
Definition: fwd.hpp:1168
tmat3x3< f32, lowp > lowp_fmat3x3
Low single-precision floating-point 3x3 matrix.
Definition: fwd.hpp:1767