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