a00125_source.html 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
  5. <title>type_precision.hpp Source File</title>
  6. <link href="tabs.css" rel="stylesheet" type="text/css"/>
  7. <link href="doxygen.css" rel="stylesheet" type="text/css"/>
  8. </head>
  9. <body>
  10. <!-- Generated by Doxygen 1.7.4 -->
  11. <div id="top">
  12. <div id="titlearea">
  13. <table cellspacing="0" cellpadding="0">
  14. <tbody>
  15. <tr style="height: 56px;">
  16. <td id="projectlogo"><img alt="Logo" src="logo-mini.png"/></td>
  17. </tr>
  18. </tbody>
  19. </table>
  20. </div>
  21. <div id="navrow1" class="tabs">
  22. <ul class="tablist">
  23. <li><a href="index.html"><span>Main&#160;Page</span></a></li>
  24. <li><a href="modules.html"><span>Modules</span></a></li>
  25. <li><a href="namespaces.html"><span>Namespaces</span></a></li>
  26. <li><a href="annotated.html"><span>Classes</span></a></li>
  27. <li class="current"><a href="files.html"><span>Files</span></a></li>
  28. </ul>
  29. </div>
  30. <div id="navrow2" class="tabs2">
  31. <ul class="tablist">
  32. <li><a href="files.html"><span>File&#160;List</span></a></li>
  33. </ul>
  34. </div>
  35. <div class="header">
  36. <div class="headertitle">
  37. <div class="title">type_precision.hpp</div> </div>
  38. </div>
  39. <div class="contents">
  40. <div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
  41. <a name="l00002"></a>00002 <span class="comment">// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)</span>
  42. <a name="l00004"></a>00004 <span class="comment"></span><span class="comment">// Created : 2009-06-04</span>
  43. <a name="l00005"></a>00005 <span class="comment">// Updated : 2009-06-04</span>
  44. <a name="l00006"></a>00006 <span class="comment">// Licence : This source is under MIT License</span>
  45. <a name="l00007"></a>00007 <span class="comment">// File : glm/gtc/type_precision.hpp</span>
  46. <a name="l00009"></a>00009 <span class="comment"></span><span class="comment">// Dependency:</span>
  47. <a name="l00010"></a>00010 <span class="comment">// - GLM core</span>
  48. <a name="l00011"></a>00011 <span class="comment">// - GLM_GTC_half</span>
  49. <a name="l00012"></a>00012 <span class="comment">// - GLM_GTC_quaternion</span>
  50. <a name="l00014"></a>00014 <span class="comment"></span>
  51. <a name="l00015"></a>00015 <span class="preprocessor">#ifndef glm_gtc_type_precision</span>
  52. <a name="l00016"></a>00016 <span class="preprocessor"></span><span class="preprocessor">#define glm_gtc_type_precision</span>
  53. <a name="l00017"></a>00017 <span class="preprocessor"></span>
  54. <a name="l00018"></a>00018 <span class="comment">// Dependency:</span>
  55. <a name="l00019"></a>00019 <span class="preprocessor">#include &quot;../glm.hpp&quot;</span>
  56. <a name="l00020"></a>00020 <span class="preprocessor">#include &quot;../gtc/half_float.hpp&quot;</span>
  57. <a name="l00021"></a>00021 <span class="preprocessor">#include &quot;../gtc/quaternion.hpp&quot;</span>
  58. <a name="l00022"></a>00022
  59. <a name="l00023"></a>00023 <span class="preprocessor">#if(defined(GLM_MESSAGES) &amp;&amp; !defined(glm_ext))</span>
  60. <a name="l00024"></a>00024 <span class="preprocessor"></span><span class="preprocessor"># pragma message(&quot;GLM: GLM_GTC_type_precision extension included&quot;)</span>
  61. <a name="l00025"></a>00025 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
  62. <a name="l00026"></a>00026 <span class="preprocessor"></span>
  63. <a name="l00027"></a>00027 <span class="keyword">namespace </span>glm{
  64. <a name="l00028"></a>00028 <span class="keyword">namespace </span>gtc{
  65. <a name="l00029"></a><a class="code" href="a00166.html">00029</a> <span class="keyword">namespace </span>type_precision
  66. <a name="l00030"></a>00030 {
  67. <a name="l00032"></a>00032 <span class="comment">// Dependences</span>
  68. <a name="l00033"></a>00033
  69. <a name="l00034"></a>00034 <span class="keyword">using namespace </span>gtc::half_float;
  70. <a name="l00035"></a>00035 <span class="keyword">using namespace </span>gtc::quaternion;
  71. <a name="l00036"></a>00036
  72. <a name="l00038"></a>00038 <span class="comment">// Signed int vector types </span>
  73. <a name="l00039"></a>00039
  74. <a name="l00042"></a>00042
  75. <a name="l00043"></a><a class="code" href="a00246.html#ga41c6189f6485c2825d60fdc835b3a2b0">00043</a> <span class="keyword">typedef</span> detail::int8 <a class="code" href="a00246.html#ga41c6189f6485c2825d60fdc835b3a2b0" title="8bit signed integer. (from GLM_GTC_type_precision extension)">int8</a>;
  76. <a name="l00044"></a><a class="code" href="a00246.html#ga302041c186d0d028bea31b711fe16759">00044</a> <span class="keyword">typedef</span> detail::int16 <a class="code" href="a00246.html#ga302041c186d0d028bea31b711fe16759" title="16bit signed integer. (from GLM_GTC_type_precision extension)">int16</a>;
  77. <a name="l00045"></a><a class="code" href="a00246.html#ga8df669f4e7698dfe0c0354d92578d74f">00045</a> <span class="keyword">typedef</span> detail::int32 <a class="code" href="a00246.html#ga8df669f4e7698dfe0c0354d92578d74f" title="32bit signed integer. (from GLM_GTC_type_precision extension)">int32</a>;
  78. <a name="l00046"></a><a class="code" href="a00246.html#gaff5189f97f9e842d9636a0f240001b2e">00046</a> <span class="keyword">typedef</span> detail::int64 <a class="code" href="a00246.html#gaff5189f97f9e842d9636a0f240001b2e" title="64bit signed integer. (from GLM_GTC_type_precision extension)">int64</a>;
  79. <a name="l00047"></a>00047
  80. <a name="l00048"></a><a class="code" href="a00246.html#ga112f99168645b5338136b72eddd12895">00048</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga41c6189f6485c2825d60fdc835b3a2b0" title="8bit signed integer. (from GLM_GTC_type_precision extension)">int8</a> <a class="code" href="a00246.html#ga112f99168645b5338136b72eddd12895" title="8bit signed integer. (from GLM_GTC_type_precision extension)">i8</a>;
  81. <a name="l00049"></a><a class="code" href="a00246.html#ga47ad84e86d8eef23a5ebab2815242a0d">00049</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga302041c186d0d028bea31b711fe16759" title="16bit signed integer. (from GLM_GTC_type_precision extension)">int16</a> <a class="code" href="a00246.html#ga47ad84e86d8eef23a5ebab2815242a0d" title="16bit signed integer. (from GLM_GTC_type_precision extension)">i16</a>;
  82. <a name="l00050"></a><a class="code" href="a00246.html#ga324db08ffb2a193f9a10864288b94523">00050</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga8df669f4e7698dfe0c0354d92578d74f" title="32bit signed integer. (from GLM_GTC_type_precision extension)">int32</a> <a class="code" href="a00246.html#ga324db08ffb2a193f9a10864288b94523" title="32bit signed integer. (from GLM_GTC_type_precision extension)">i32</a>;
  83. <a name="l00051"></a><a class="code" href="a00246.html#ga60abe2e6e0bacb893a2d6d17cc50f753">00051</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#gaff5189f97f9e842d9636a0f240001b2e" title="64bit signed integer. (from GLM_GTC_type_precision extension)">int64</a> <a class="code" href="a00246.html#ga60abe2e6e0bacb893a2d6d17cc50f753" title="64bit signed integer. (from GLM_GTC_type_precision extension)">i64</a>;
  84. <a name="l00052"></a>00052
  85. <a name="l00053"></a>00053 <span class="comment">//typedef i8 i8vec1; //!&lt; \brief 8bit signed integer scalar. (from GLM_GTC_type_precision extension)</span>
  86. <a name="l00054"></a><a class="code" href="a00246.html#ga9ab3f26fa232d5a4d2397d7904eb9069">00054</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;i8&gt;</a> <a class="code" href="a00246.html#ga9ab3f26fa232d5a4d2397d7904eb9069" title="8bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension)">i8vec2</a>;
  87. <a name="l00055"></a><a class="code" href="a00246.html#gaa8c91ad088bbbd51f2ef3b7701f00ed9">00055</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;i8&gt;</a> <a class="code" href="a00246.html#gaa8c91ad088bbbd51f2ef3b7701f00ed9" title="8bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension)">i8vec3</a>;
  88. <a name="l00056"></a><a class="code" href="a00246.html#ga792e1b3e596a020df28a8eb4ec3c0708">00056</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;i8&gt;</a> <a class="code" href="a00246.html#ga792e1b3e596a020df28a8eb4ec3c0708" title="8bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension)">i8vec4</a>;
  89. <a name="l00057"></a>00057
  90. <a name="l00058"></a>00058 <span class="comment">//typedef i16 i16vec1; //!&lt; \brief 16bit signed integer scalar. (from GLM_GTC_type_precision extension)</span>
  91. <a name="l00059"></a><a class="code" href="a00246.html#ga6a9c8e79629016f081cd3274eeafe429">00059</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;i16&gt;</a> <a class="code" href="a00246.html#ga6a9c8e79629016f081cd3274eeafe429" title="16bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension)">i16vec2</a>;
  92. <a name="l00060"></a><a class="code" href="a00246.html#ga539ac09149e338c783bc492fd25d504c">00060</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;i16&gt;</a> <a class="code" href="a00246.html#ga539ac09149e338c783bc492fd25d504c" title="16bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension)">i16vec3</a>;
  93. <a name="l00061"></a><a class="code" href="a00246.html#ga09c99e80eb63c8df7a9cc4021c8a2811">00061</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;i16&gt;</a> <a class="code" href="a00246.html#ga09c99e80eb63c8df7a9cc4021c8a2811" title="16bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension)">i16vec4</a>;
  94. <a name="l00062"></a>00062
  95. <a name="l00063"></a>00063 <span class="comment">//typedef i32 i32vec1; //!&lt; \brief 32bit signed integer scalar. (from GLM_GTC_type_precision extension)</span>
  96. <a name="l00064"></a><a class="code" href="a00246.html#ga587a33330386e50f7ff9a870f1b62ab1">00064</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;i32&gt;</a> <a class="code" href="a00246.html#ga587a33330386e50f7ff9a870f1b62ab1" title="32bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension)">i32vec2</a>;
  97. <a name="l00065"></a><a class="code" href="a00246.html#gae8b7bb7698c98fb69f2a4aff8a757416">00065</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;i32&gt;</a> <a class="code" href="a00246.html#gae8b7bb7698c98fb69f2a4aff8a757416" title="32bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension)">i32vec3</a>;
  98. <a name="l00066"></a><a class="code" href="a00246.html#gaa82f1d2958dfcc463a2498d52ee80a0a">00066</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;i32&gt;</a> <a class="code" href="a00246.html#gaa82f1d2958dfcc463a2498d52ee80a0a" title="32bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension)">i32vec4</a>;
  99. <a name="l00067"></a>00067
  100. <a name="l00068"></a>00068 <span class="comment">//typedef i64 i64vec1; //!&lt; \brief 32bit signed integer scalar. (from GLM_GTC_type_precision extension)</span>
  101. <a name="l00069"></a><a class="code" href="a00246.html#ga7a6245c652f68ba306c05bb0d4ca1361">00069</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;i64&gt;</a> <a class="code" href="a00246.html#ga7a6245c652f68ba306c05bb0d4ca1361" title="64bit signed integer vector of 2 components. (from GLM_GTC_type_precision extension)">i64vec2</a>;
  102. <a name="l00070"></a><a class="code" href="a00246.html#ga78ad50b24382913ef6068ded644c9f3f">00070</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;i64&gt;</a> <a class="code" href="a00246.html#ga78ad50b24382913ef6068ded644c9f3f" title="64bit signed integer vector of 3 components. (from GLM_GTC_type_precision extension)">i64vec3</a>;
  103. <a name="l00071"></a><a class="code" href="a00246.html#ga8392ac39a51731ab9a5b3f23a5eaf1d7">00071</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;i64&gt;</a> <a class="code" href="a00246.html#ga8392ac39a51731ab9a5b3f23a5eaf1d7" title="64bit signed integer vector of 4 components. (from GLM_GTC_type_precision extension)">i64vec4</a>;
  104. <a name="l00072"></a>00072
  105. <a name="l00074"></a>00074 <span class="comment">// Unsigned int vector types </span>
  106. <a name="l00075"></a>00075
  107. <a name="l00076"></a><a class="code" href="a00246.html#ga36475e31b1992cfde54c1a6f5a148865">00076</a> <span class="keyword">typedef</span> detail::uint8 <a class="code" href="a00246.html#ga36475e31b1992cfde54c1a6f5a148865" title="8bit unsigned integer. (from GLM_GTC_type_precision extension)">uint8</a>;
  108. <a name="l00077"></a><a class="code" href="a00246.html#ga13471cbbe74e4303a57f3743d007b74d">00077</a> <span class="keyword">typedef</span> detail::uint16 <a class="code" href="a00246.html#ga13471cbbe74e4303a57f3743d007b74d" title="16bit unsigned integer. (from GLM_GTC_type_precision extension)">uint16</a>;
  109. <a name="l00078"></a><a class="code" href="a00246.html#ga5fa3ddcab56c789bc272ff5651faa12d">00078</a> <span class="keyword">typedef</span> detail::uint32 <a class="code" href="a00246.html#ga5fa3ddcab56c789bc272ff5651faa12d" title="32bit unsigned integer. (from GLM_GTC_type_precision extension)">uint32</a>;
  110. <a name="l00079"></a><a class="code" href="a00246.html#gab630f76c26b50298187f7889104d4b9c">00079</a> <span class="keyword">typedef</span> detail::uint64 <a class="code" href="a00246.html#gab630f76c26b50298187f7889104d4b9c" title="64bit unsigned integer. (from GLM_GTC_type_precision extension)">uint64</a>;
  111. <a name="l00080"></a>00080
  112. <a name="l00081"></a><a class="code" href="a00246.html#gad8d9dbef83392da434801486bf814fe4">00081</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga36475e31b1992cfde54c1a6f5a148865" title="8bit unsigned integer. (from GLM_GTC_type_precision extension)">uint8</a> <a class="code" href="a00246.html#gad8d9dbef83392da434801486bf814fe4" title="8bit unsigned integer. (from GLM_GTC_type_precision extension)">u8</a>;
  113. <a name="l00082"></a><a class="code" href="a00246.html#ga91ec65f57d610f6902fd081f1d1e265a">00082</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga13471cbbe74e4303a57f3743d007b74d" title="16bit unsigned integer. (from GLM_GTC_type_precision extension)">uint16</a> <a class="code" href="a00246.html#ga91ec65f57d610f6902fd081f1d1e265a" title="16bit unsigned integer. (from GLM_GTC_type_precision extension)">u16</a>;
  114. <a name="l00083"></a><a class="code" href="a00246.html#ga0bb0c4c53d0a5ea2c01d0bb363b56722">00083</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#ga5fa3ddcab56c789bc272ff5651faa12d" title="32bit unsigned integer. (from GLM_GTC_type_precision extension)">uint32</a> <a class="code" href="a00246.html#ga0bb0c4c53d0a5ea2c01d0bb363b56722" title="32bit unsigned integer. (from GLM_GTC_type_precision extension)">u32</a>;
  115. <a name="l00084"></a><a class="code" href="a00246.html#ga02ecb7390e4c4515df2268d18f99abc0">00084</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#gab630f76c26b50298187f7889104d4b9c" title="64bit unsigned integer. (from GLM_GTC_type_precision extension)">uint64</a> <a class="code" href="a00246.html#ga02ecb7390e4c4515df2268d18f99abc0" title="64bit unsigned integer. (from GLM_GTC_type_precision extension)">u64</a>;
  116. <a name="l00085"></a>00085
  117. <a name="l00086"></a>00086 <span class="comment">//typedef u8 u8vec1; //!&lt; \brief 8bit unsigned integer scalar. (from GLM_GTC_type_precision extension)</span>
  118. <a name="l00087"></a><a class="code" href="a00246.html#ga8f78a1ea21be24a89da31928fc037bfd">00087</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;u8&gt;</a> <a class="code" href="a00246.html#ga8f78a1ea21be24a89da31928fc037bfd" title="8bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension)">u8vec2</a>;
  119. <a name="l00088"></a><a class="code" href="a00246.html#ga7a4cb62a556ad09c7e0721aecac64dbd">00088</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;u8&gt;</a> <a class="code" href="a00246.html#ga7a4cb62a556ad09c7e0721aecac64dbd" title="8bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension)">u8vec3</a>;
  120. <a name="l00089"></a><a class="code" href="a00246.html#ga83091381b9b909057004c4de7896d072">00089</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;u8&gt;</a> <a class="code" href="a00246.html#ga83091381b9b909057004c4de7896d072" title="8bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension)">u8vec4</a>;
  121. <a name="l00090"></a>00090
  122. <a name="l00091"></a>00091 <span class="comment">//typedef u16 u16vec1; //!&lt; \brief 16bit unsigned integer scalar. (from GLM_GTC_type_precision extension)</span>
  123. <a name="l00092"></a><a class="code" href="a00246.html#ga63f78111033fd19335588c549fcc0512">00092</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;u16&gt;</a> <a class="code" href="a00246.html#ga63f78111033fd19335588c549fcc0512" title="16bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension)">u16vec2</a>;
  124. <a name="l00093"></a><a class="code" href="a00246.html#ga53d4785d0f40c66bf58b315dd1122fe4">00093</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;u16&gt;</a> <a class="code" href="a00246.html#ga53d4785d0f40c66bf58b315dd1122fe4" title="16bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension)">u16vec3</a>;
  125. <a name="l00094"></a><a class="code" href="a00246.html#ga0331a2b68ce5f72a450f6d45c90f7709">00094</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;u16&gt;</a> <a class="code" href="a00246.html#ga0331a2b68ce5f72a450f6d45c90f7709" title="16bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension)">u16vec4</a>;
  126. <a name="l00095"></a>00095
  127. <a name="l00096"></a>00096 <span class="comment">//typedef u32 u32vec1; //!&lt; \brief 32bit unsigned integer scalar. (from GLM_GTC_type_precision extension)</span>
  128. <a name="l00097"></a><a class="code" href="a00246.html#gaae1d6aa5d86a2744294b97e05b623e29">00097</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;u32&gt;</a> <a class="code" href="a00246.html#gaae1d6aa5d86a2744294b97e05b623e29" title="32bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension)">u32vec2</a>;
  129. <a name="l00098"></a><a class="code" href="a00246.html#gae013bd205f900d8ac3d783e62c9fa294">00098</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;u32&gt;</a> <a class="code" href="a00246.html#gae013bd205f900d8ac3d783e62c9fa294" title="32bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension)">u32vec3</a>;
  130. <a name="l00099"></a><a class="code" href="a00246.html#gac61f03e72cbcace4582b0c11859f54c7">00099</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;u32&gt;</a> <a class="code" href="a00246.html#gac61f03e72cbcace4582b0c11859f54c7" title="32bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension)">u32vec4</a>;
  131. <a name="l00100"></a>00100
  132. <a name="l00101"></a>00101 <span class="comment">//typedef u64 u64vec1; //!&lt; \brief 64bit unsigned integer scalar. (from GLM_GTC_type_precision extension)</span>
  133. <a name="l00102"></a><a class="code" href="a00246.html#ga98265c5d66ab4bf19f4242746233526c">00102</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;u64&gt;</a> <a class="code" href="a00246.html#ga98265c5d66ab4bf19f4242746233526c" title="64bit unsigned integer vector of 2 components. (from GLM_GTC_type_precision extension)">u64vec2</a>;
  134. <a name="l00103"></a><a class="code" href="a00246.html#ga470cfa496aae49e63c5becee347651a1">00103</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;u64&gt;</a> <a class="code" href="a00246.html#ga470cfa496aae49e63c5becee347651a1" title="64bit unsigned integer vector of 3 components. (from GLM_GTC_type_precision extension)">u64vec3</a>;
  135. <a name="l00104"></a><a class="code" href="a00246.html#ga34a421d3df867266c9437dc00897edeb">00104</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;u64&gt;</a> <a class="code" href="a00246.html#ga34a421d3df867266c9437dc00897edeb" title="64bit unsigned integer vector of 4 components. (from GLM_GTC_type_precision extension)">u64vec4</a>;
  136. <a name="l00105"></a>00105
  137. <a name="l00107"></a>00107 <span class="comment">// Float vector types </span>
  138. <a name="l00108"></a>00108
  139. <a name="l00109"></a><a class="code" href="a00246.html#ga19287ee46bd37d1459731d7191bc2f66">00109</a> <span class="keyword">typedef</span> <a class="code" href="a00009.html" title="16-bit floating point type.">detail::float16</a> <a class="code" href="a00246.html#ga19287ee46bd37d1459731d7191bc2f66" title="Half-precision floating-point scalar. (from GLM_GTC_type_precision extension)">float16</a>;
  140. <a name="l00110"></a><a class="code" href="a00246.html#gad3c127f8bf8d7d4e738037c257abb5b1">00110</a> <span class="keyword">typedef</span> detail::float32 <a class="code" href="a00246.html#gad3c127f8bf8d7d4e738037c257abb5b1" title="Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)">float32</a>;
  141. <a name="l00111"></a><a class="code" href="a00246.html#gab5596d48586414c91ccb270962dc14d3">00111</a> <span class="keyword">typedef</span> detail::float64 <a class="code" href="a00246.html#gab5596d48586414c91ccb270962dc14d3" title="Double-precision floating-point scalar. (from GLM_GTC_type_precision extension)">float64</a>;
  142. <a name="l00112"></a>00112
  143. <a name="l00113"></a><a class="code" href="a00246.html#ga3ca1b6511bcc12516b5fd76c7976f01b">00113</a> <span class="keyword">typedef</span> <a class="code" href="a00009.html" title="16-bit floating point type.">float16</a> <a class="code" href="a00246.html#ga3ca1b6511bcc12516b5fd76c7976f01b" title="Half-precision floating-point scalar. (from GLM_GTC_type_precision extension)">f16</a>;
  144. <a name="l00114"></a><a class="code" href="a00246.html#gabe6a542dd6c1d5ffd847f1b9b4c9c9b7">00114</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#gad3c127f8bf8d7d4e738037c257abb5b1" title="Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)">float32</a> <a class="code" href="a00246.html#gabe6a542dd6c1d5ffd847f1b9b4c9c9b7" title="Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)">f32</a>;
  145. <a name="l00115"></a><a class="code" href="a00246.html#ga1d794d240091678f602e8de225b8d8c9">00115</a> <span class="keyword">typedef</span> <a class="code" href="a00246.html#gab5596d48586414c91ccb270962dc14d3" title="Double-precision floating-point scalar. (from GLM_GTC_type_precision extension)">float64</a> <a class="code" href="a00246.html#ga1d794d240091678f602e8de225b8d8c9" title="Double-precision floating-point scalar. (from GLM_GTC_type_precision extension)">f64</a>;
  146. <a name="l00116"></a>00116
  147. <a name="l00117"></a><a class="code" href="a00246.html#gaeb3201411f8933fae30fe36b3fb1db90">00117</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;float&gt;</a> <a class="code" href="a00246.html#gaeb3201411f8933fae30fe36b3fb1db90" title="Vector of 2 single-precision floating-point numbers. (from GLM_GTC_type_precision extension)...">fvec2</a>;
  148. <a name="l00118"></a><a class="code" href="a00246.html#ga36d8bc27da6e04285ab3b11d0af061b0">00118</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;float&gt;</a> <a class="code" href="a00246.html#ga36d8bc27da6e04285ab3b11d0af061b0" title="Vector of 3 single-precision floating-point numbers. (from GLM_GTC_type_precision extension)...">fvec3</a>;
  149. <a name="l00119"></a><a class="code" href="a00246.html#gac8e4776e86d01ed43b2dce32db2c72ba">00119</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;float&gt;</a> <a class="code" href="a00246.html#gac8e4776e86d01ed43b2dce32db2c72ba" title="Vector of 4 single-precision floating-point numbers. (from GLM_GTC_type_precision extension)...">fvec4</a>;
  150. <a name="l00120"></a>00120
  151. <a name="l00121"></a>00121 <span class="comment">//typedef f16 f16vec1; //!&lt; \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  152. <a name="l00122"></a><a class="code" href="a00246.html#gac29c0992aa0fe2df8f9b6b9edc220822">00122</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;f16&gt;</a> <a class="code" href="a00246.html#gac29c0992aa0fe2df8f9b6b9edc220822" title="Half-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension)...">f16vec2</a>;
  153. <a name="l00123"></a><a class="code" href="a00246.html#gaa68a583d3e3b202e1b48c7bc94964c78">00123</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;f16&gt;</a> <a class="code" href="a00246.html#gaa68a583d3e3b202e1b48c7bc94964c78" title="Half-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension)...">f16vec3</a>;
  154. <a name="l00124"></a><a class="code" href="a00246.html#gae77767db0311f307255a057fd7358704">00124</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;f16&gt;</a> <a class="code" href="a00246.html#gae77767db0311f307255a057fd7358704" title="Half-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension)...">f16vec4</a>;
  155. <a name="l00125"></a>00125
  156. <a name="l00126"></a>00126 <span class="comment">//typedef f32 f32vec1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  157. <a name="l00127"></a><a class="code" href="a00246.html#ga6a1674122ce80c7f3b77ddbc85b4d9f1">00127</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;f32&gt;</a> <a class="code" href="a00246.html#ga6a1674122ce80c7f3b77ddbc85b4d9f1" title="Single-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension)...">f32vec2</a>;
  158. <a name="l00128"></a><a class="code" href="a00246.html#ga81353c6a9b282b2b34185306a40040ad">00128</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;f32&gt;</a> <a class="code" href="a00246.html#ga81353c6a9b282b2b34185306a40040ad" title="Single-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension)...">f32vec3</a>;
  159. <a name="l00129"></a><a class="code" href="a00246.html#ga58dbce28a4d4b0d72c239cf3069bd28b">00129</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga58dbce28a4d4b0d72c239cf3069bd28b" title="Single-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension)...">f32vec4</a>;
  160. <a name="l00130"></a>00130
  161. <a name="l00131"></a>00131 <span class="comment">//typedef f64 f64vec1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  162. <a name="l00132"></a><a class="code" href="a00246.html#ga1de31e7b24d714613b83fb704b8b1fd1">00132</a> <span class="keyword">typedef</span> <a class="code" href="a00020.html" title="The basic 2D vector type.">detail::tvec2&lt;f64&gt;</a> <a class="code" href="a00246.html#ga1de31e7b24d714613b83fb704b8b1fd1" title="Double-precision floating-point vector of 2 components. (from GLM_GTC_type_precision extension)...">f64vec2</a>;
  163. <a name="l00133"></a><a class="code" href="a00246.html#ga2a4b3d9e62dc8c9b970e91c38bb56997">00133</a> <span class="keyword">typedef</span> <a class="code" href="a00021.html" title="Basic 3D vector type.">detail::tvec3&lt;f64&gt;</a> <a class="code" href="a00246.html#ga2a4b3d9e62dc8c9b970e91c38bb56997" title="Double-precision floating-point vector of 3 components. (from GLM_GTC_type_precision extension)...">f64vec3</a>;
  164. <a name="l00134"></a><a class="code" href="a00246.html#ga66999872051fdf1934199af093eedece">00134</a> <span class="keyword">typedef</span> <a class="code" href="a00022.html" title="Basic 4D vector type.">detail::tvec4&lt;f64&gt;</a> <a class="code" href="a00246.html#ga66999872051fdf1934199af093eedece" title="Double-precision floating-point vector of 4 components. (from GLM_GTC_type_precision extension)...">f64vec4</a>;
  165. <a name="l00135"></a>00135
  166. <a name="l00137"></a>00137 <span class="comment">// Float matrix types </span>
  167. <a name="l00138"></a>00138
  168. <a name="l00139"></a>00139 <span class="comment">//typedef f32 fmat1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  169. <a name="l00140"></a><a class="code" href="a00246.html#gaee87d6e282960e7c75bfb1371def1fc6">00140</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f32&gt;</a> <a class="code" href="a00246.html#gaee87d6e282960e7c75bfb1371def1fc6" title="Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">fmat2</a>;
  170. <a name="l00141"></a><a class="code" href="a00246.html#ga885ab2670ad608f174889cc5779e814c">00141</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f32&gt;</a> <a class="code" href="a00246.html#ga885ab2670ad608f174889cc5779e814c" title="Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">fmat3</a>;
  171. <a name="l00142"></a><a class="code" href="a00246.html#ga17a80f33494617743e6156e125c2333d">00142</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga17a80f33494617743e6156e125c2333d" title="Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">fmat4</a>;
  172. <a name="l00143"></a>00143
  173. <a name="l00144"></a>00144 <span class="comment">//typedef f32 fmat1x1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  174. <a name="l00145"></a><a class="code" href="a00246.html#ga1c9d98f605e9194e6febfc8c390f21e2">00145</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f32&gt;</a> <a class="code" href="a00246.html#ga1c9d98f605e9194e6febfc8c390f21e2" title="Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">fmat2x2</a>;
  175. <a name="l00146"></a><a class="code" href="a00246.html#ga5a49e7e42cb7826309dfe5914ff7adb2">00146</a> <span class="keyword">typedef</span> <a class="code" href="a00011.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">detail::tmat2x3&lt;f32&gt;</a> <a class="code" href="a00246.html#ga5a49e7e42cb7826309dfe5914ff7adb2" title="Single-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension)">fmat2x3</a>;
  176. <a name="l00147"></a><a class="code" href="a00246.html#ga17af021ba84b81a88cd8ff5415737082">00147</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">detail::tmat2x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga17af021ba84b81a88cd8ff5415737082" title="Single-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension)">fmat2x4</a>;
  177. <a name="l00148"></a><a class="code" href="a00246.html#gabb5363b848026b7819e8df12f9eba807">00148</a> <span class="keyword">typedef</span> <a class="code" href="a00013.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">detail::tmat3x2&lt;f32&gt;</a> <a class="code" href="a00246.html#gabb5363b848026b7819e8df12f9eba807" title="Single-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension)">fmat3x2</a>;
  178. <a name="l00149"></a><a class="code" href="a00246.html#gae3cec4e7ffbfce5fc693f70693b67bdd">00149</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f32&gt;</a> <a class="code" href="a00246.html#gae3cec4e7ffbfce5fc693f70693b67bdd" title="Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">fmat3x3</a>;
  179. <a name="l00150"></a><a class="code" href="a00246.html#ga8cc18a8db872ac321446a0ec76d0f4c9">00150</a> <span class="keyword">typedef</span> <a class="code" href="a00015.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">detail::tmat3x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga8cc18a8db872ac321446a0ec76d0f4c9" title="Single-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension)">fmat3x4</a>;
  180. <a name="l00151"></a><a class="code" href="a00246.html#ga730c05a1fd676cedcecd74595866bb35">00151</a> <span class="keyword">typedef</span> <a class="code" href="a00016.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;f32&gt;</a> <a class="code" href="a00246.html#ga730c05a1fd676cedcecd74595866bb35" title="Single-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension)">fmat4x2</a>;
  181. <a name="l00152"></a><a class="code" href="a00246.html#gac9d68d8ad27aceea1814b96b1e8fc92e">00152</a> <span class="keyword">typedef</span> <a class="code" href="a00017.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">detail::tmat4x3&lt;f32&gt;</a> <a class="code" href="a00246.html#gac9d68d8ad27aceea1814b96b1e8fc92e" title="Single-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension)">fmat4x3</a>;
  182. <a name="l00153"></a><a class="code" href="a00246.html#ga5a1741d5e03b4a99ad1728a8e8c65a38">00153</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga5a1741d5e03b4a99ad1728a8e8c65a38" title="Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">fmat4x4</a>;
  183. <a name="l00154"></a>00154
  184. <a name="l00155"></a>00155 <span class="comment">//typedef f16 f16mat1; //!&lt; \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  185. <a name="l00156"></a><a class="code" href="a00246.html#gae16f41dbae14d92fb946080a0a868de9">00156</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f16&gt;</a> <a class="code" href="a00246.html#gae16f41dbae14d92fb946080a0a868de9" title="Half-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f16mat2</a>;
  186. <a name="l00157"></a><a class="code" href="a00246.html#ga3ada76173b353ee8615dcd70dbf7fe7f">00157</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f16&gt;</a> <a class="code" href="a00246.html#ga3ada76173b353ee8615dcd70dbf7fe7f" title="Half-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f16mat3</a>;
  187. <a name="l00158"></a><a class="code" href="a00246.html#gac12c1d9b5e7ef301c81b23cd555c5be9">00158</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f16&gt;</a> <a class="code" href="a00246.html#gac12c1d9b5e7ef301c81b23cd555c5be9" title="Half-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f16mat4</a>;
  188. <a name="l00159"></a>00159
  189. <a name="l00160"></a>00160 <span class="comment">//typedef f16 f16mat1x1; //!&lt; \brief Half-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  190. <a name="l00161"></a><a class="code" href="a00246.html#ga0251c24813cf14f31851e506ccaca8e3">00161</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f16&gt;</a> <a class="code" href="a00246.html#ga0251c24813cf14f31851e506ccaca8e3" title="Half-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f16mat2x2</a>;
  191. <a name="l00162"></a><a class="code" href="a00246.html#ga75b44fd9278b87d63926bf6cb83a90ce">00162</a> <span class="keyword">typedef</span> <a class="code" href="a00011.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">detail::tmat2x3&lt;f16&gt;</a> <a class="code" href="a00246.html#ga75b44fd9278b87d63926bf6cb83a90ce" title="Half-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension)">f16mat2x3</a>;
  192. <a name="l00163"></a><a class="code" href="a00246.html#ga5f7b279e5d36687a69f75cf2f95b64c5">00163</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">detail::tmat2x4&lt;f16&gt;</a> <a class="code" href="a00246.html#ga5f7b279e5d36687a69f75cf2f95b64c5" title="Half-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension)">f16mat2x4</a>;
  193. <a name="l00164"></a><a class="code" href="a00246.html#gacc55b3fc1bd509b96f5f291b019b0c3a">00164</a> <span class="keyword">typedef</span> <a class="code" href="a00013.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">detail::tmat3x2&lt;f16&gt;</a> <a class="code" href="a00246.html#gacc55b3fc1bd509b96f5f291b019b0c3a" title="Half-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension)">f16mat3x2</a>;
  194. <a name="l00165"></a><a class="code" href="a00246.html#ga4fe684c085caee45c79f6b8e2a8a498e">00165</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f16&gt;</a> <a class="code" href="a00246.html#ga4fe684c085caee45c79f6b8e2a8a498e" title="Half-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f16mat3x3</a>;
  195. <a name="l00166"></a><a class="code" href="a00246.html#gaeefd948e1360ef7fe65201482f07e379">00166</a> <span class="keyword">typedef</span> <a class="code" href="a00015.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">detail::tmat3x4&lt;f16&gt;</a> <a class="code" href="a00246.html#gaeefd948e1360ef7fe65201482f07e379" title="Half-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension)">f16mat3x4</a>;
  196. <a name="l00167"></a><a class="code" href="a00246.html#gad18e575d7bc47e6d696366712724c31a">00167</a> <span class="keyword">typedef</span> <a class="code" href="a00016.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;f16&gt;</a> <a class="code" href="a00246.html#gad18e575d7bc47e6d696366712724c31a" title="Half-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension)">f16mat4x2</a>;
  197. <a name="l00168"></a><a class="code" href="a00246.html#ga38e54b583ed34891b3dc3fcd8f194a44">00168</a> <span class="keyword">typedef</span> <a class="code" href="a00017.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">detail::tmat4x3&lt;f16&gt;</a> <a class="code" href="a00246.html#ga38e54b583ed34891b3dc3fcd8f194a44" title="Half-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension)">f16mat4x3</a>;
  198. <a name="l00169"></a><a class="code" href="a00246.html#ga996f1e97233164dd076fad915b1f4b2a">00169</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f16&gt;</a> <a class="code" href="a00246.html#ga996f1e97233164dd076fad915b1f4b2a" title="Half-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f16mat4x4</a>;
  199. <a name="l00170"></a>00170
  200. <a name="l00171"></a>00171 <span class="comment">//typedef f32 f32mat1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  201. <a name="l00172"></a><a class="code" href="a00246.html#gaaffc1dddbdfee9006f65dec7490cef35">00172</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f32&gt;</a> <a class="code" href="a00246.html#gaaffc1dddbdfee9006f65dec7490cef35" title="Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f32mat2</a>;
  202. <a name="l00173"></a><a class="code" href="a00246.html#ga2da36e87f1f319cd99d2870ab3be4799">00173</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f32&gt;</a> <a class="code" href="a00246.html#ga2da36e87f1f319cd99d2870ab3be4799" title="Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f32mat3</a>;
  203. <a name="l00174"></a><a class="code" href="a00246.html#gae84e6d0a740dbbefeb29c72ca93b9202">00174</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f32&gt;</a> <a class="code" href="a00246.html#gae84e6d0a740dbbefeb29c72ca93b9202" title="Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f32mat4</a>;
  204. <a name="l00175"></a>00175
  205. <a name="l00176"></a>00176 <span class="comment">//typedef f32 f32mat1x1; //!&lt; \brief Single-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  206. <a name="l00177"></a><a class="code" href="a00246.html#ga9b851abbec4f37c06604e5b612b764a3">00177</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f32&gt;</a> <a class="code" href="a00246.html#ga9b851abbec4f37c06604e5b612b764a3" title="Single-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f32mat2x2</a>;
  207. <a name="l00178"></a><a class="code" href="a00246.html#gabc06add14a487def0be0a88cb7191310">00178</a> <span class="keyword">typedef</span> <a class="code" href="a00011.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">detail::tmat2x3&lt;f32&gt;</a> <a class="code" href="a00246.html#gabc06add14a487def0be0a88cb7191310" title="Single-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension)">f32mat2x3</a>;
  208. <a name="l00179"></a><a class="code" href="a00246.html#gae7d246881a2b9bbf2933e9aa32c873f9">00179</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">detail::tmat2x4&lt;f32&gt;</a> <a class="code" href="a00246.html#gae7d246881a2b9bbf2933e9aa32c873f9" title="Single-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension)">f32mat2x4</a>;
  209. <a name="l00180"></a><a class="code" href="a00246.html#ga3c2727aca36e2f45f4eaabc06fe859e5">00180</a> <span class="keyword">typedef</span> <a class="code" href="a00013.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">detail::tmat3x2&lt;f32&gt;</a> <a class="code" href="a00246.html#ga3c2727aca36e2f45f4eaabc06fe859e5" title="Single-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension)">f32mat3x2</a>;
  210. <a name="l00181"></a><a class="code" href="a00246.html#gad60954ab0fcc5d2fdf2573be7d359920">00181</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f32&gt;</a> <a class="code" href="a00246.html#gad60954ab0fcc5d2fdf2573be7d359920" title="Single-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f32mat3x3</a>;
  211. <a name="l00182"></a><a class="code" href="a00246.html#ga76466bef28f20c754b6f25da8138033b">00182</a> <span class="keyword">typedef</span> <a class="code" href="a00015.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">detail::tmat3x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga76466bef28f20c754b6f25da8138033b" title="Single-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension)">f32mat3x4</a>;
  212. <a name="l00183"></a><a class="code" href="a00246.html#gaf81550e292ce3d4dd2c22960713188f3">00183</a> <span class="keyword">typedef</span> <a class="code" href="a00016.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;f32&gt;</a> <a class="code" href="a00246.html#gaf81550e292ce3d4dd2c22960713188f3" title="Single-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension)">f32mat4x2</a>;
  213. <a name="l00184"></a><a class="code" href="a00246.html#ga0a78d326a35e18803e7ae7a49d2c738c">00184</a> <span class="keyword">typedef</span> <a class="code" href="a00017.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">detail::tmat4x3&lt;f32&gt;</a> <a class="code" href="a00246.html#ga0a78d326a35e18803e7ae7a49d2c738c" title="Single-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension)">f32mat4x3</a>;
  214. <a name="l00185"></a><a class="code" href="a00246.html#ga390ae17a61ddb8a7702cd92065754633">00185</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f32&gt;</a> <a class="code" href="a00246.html#ga390ae17a61ddb8a7702cd92065754633" title="Single-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f32mat4x4</a>;
  215. <a name="l00186"></a>00186
  216. <a name="l00187"></a>00187 <span class="comment">//typedef f64 f64mat1; //!&lt; \brief Double-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  217. <a name="l00188"></a><a class="code" href="a00246.html#ga8e6af45d08751da72ddb3c8380028d0b">00188</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f64&gt;</a> <a class="code" href="a00246.html#ga8e6af45d08751da72ddb3c8380028d0b" title="Double-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f64mat2</a>;
  218. <a name="l00189"></a><a class="code" href="a00246.html#gae394301075475e6759f0835a251d497e">00189</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f64&gt;</a> <a class="code" href="a00246.html#gae394301075475e6759f0835a251d497e" title="Double-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f64mat3</a>;
  219. <a name="l00190"></a><a class="code" href="a00246.html#ga4c6042a4ef0df9c92b94dd8a30df3f82">00190</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f64&gt;</a> <a class="code" href="a00246.html#ga4c6042a4ef0df9c92b94dd8a30df3f82" title="Double-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f64mat4</a>;
  220. <a name="l00191"></a>00191
  221. <a name="l00192"></a>00192 <span class="comment">//typedef f64 f64mat1x1; //!&lt; \brief Double-precision floating-point scalar. (from GLM_GTC_type_precision extension)</span>
  222. <a name="l00193"></a><a class="code" href="a00246.html#ga48dfaa0c23e89839f9fd43ae1d03f5de">00193</a> <span class="keyword">typedef</span> <a class="code" href="a00010.html" title="Template for 2 * 2 matrix of floating-point numbers.">detail::tmat2x2&lt;f64&gt;</a> <a class="code" href="a00246.html#ga48dfaa0c23e89839f9fd43ae1d03f5de" title="Double-precision floating-point 2x2 matrix. (from GLM_GTC_type_precision extension)">f64mat2x2</a>;
  223. <a name="l00194"></a><a class="code" href="a00246.html#ga0ee61da67c73edc53648db680e0a6d59">00194</a> <span class="keyword">typedef</span> <a class="code" href="a00011.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">detail::tmat2x3&lt;f64&gt;</a> <a class="code" href="a00246.html#ga0ee61da67c73edc53648db680e0a6d59" title="Double-precision floating-point 2x3 matrix. (from GLM_GTC_type_precision extension)">f64mat2x3</a>;
  224. <a name="l00195"></a><a class="code" href="a00246.html#ga95a3099cce2b620027a9164324787a14">00195</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">detail::tmat2x4&lt;f64&gt;</a> <a class="code" href="a00246.html#ga95a3099cce2b620027a9164324787a14" title="Double-precision floating-point 2x4 matrix. (from GLM_GTC_type_precision extension)">f64mat2x4</a>;
  225. <a name="l00196"></a><a class="code" href="a00246.html#ga24ab90298c753e8da92ba333ef2f7f71">00196</a> <span class="keyword">typedef</span> <a class="code" href="a00013.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">detail::tmat3x2&lt;f64&gt;</a> <a class="code" href="a00246.html#ga24ab90298c753e8da92ba333ef2f7f71" title="Double-precision floating-point 3x2 matrix. (from GLM_GTC_type_precision extension)">f64mat3x2</a>;
  226. <a name="l00197"></a><a class="code" href="a00246.html#ga5dfbb37bd5e0a221b1627172e052a168">00197</a> <span class="keyword">typedef</span> <a class="code" href="a00014.html" title="Template for 3 * 3 matrix of floating-point numbers.">detail::tmat3x3&lt;f64&gt;</a> <a class="code" href="a00246.html#ga5dfbb37bd5e0a221b1627172e052a168" title="Double-precision floating-point 3x3 matrix. (from GLM_GTC_type_precision extension)">f64mat3x3</a>;
  227. <a name="l00198"></a><a class="code" href="a00246.html#gaecc98ee8c67aaca82e817d2cf4028cd7">00198</a> <span class="keyword">typedef</span> <a class="code" href="a00015.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">detail::tmat3x4&lt;f64&gt;</a> <a class="code" href="a00246.html#gaecc98ee8c67aaca82e817d2cf4028cd7" title="Double-precision floating-point 3x4 matrix. (from GLM_GTC_type_precision extension)">f64mat3x4</a>;
  228. <a name="l00199"></a><a class="code" href="a00246.html#gac99d22a5ada54ab33aad0cd208d20e48">00199</a> <span class="keyword">typedef</span> <a class="code" href="a00016.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;f64&gt;</a> <a class="code" href="a00246.html#gac99d22a5ada54ab33aad0cd208d20e48" title="Double-precision floating-point 4x2 matrix. (from GLM_GTC_type_precision extension)">f64mat4x2</a>;
  229. <a name="l00200"></a><a class="code" href="a00246.html#ga1e10cbf50386189533011ef827204920">00200</a> <span class="keyword">typedef</span> <a class="code" href="a00017.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">detail::tmat4x3&lt;f64&gt;</a> <a class="code" href="a00246.html#ga1e10cbf50386189533011ef827204920" title="Double-precision floating-point 4x3 matrix. (from GLM_GTC_type_precision extension)">f64mat4x3</a>;
  230. <a name="l00201"></a><a class="code" href="a00246.html#ga5efb4fb73bf79baf00cda64d318bfdb5">00201</a> <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Template for 4 * 4 matrix of floating-point numbers.">detail::tmat4x4&lt;f64&gt;</a> <a class="code" href="a00246.html#ga5efb4fb73bf79baf00cda64d318bfdb5" title="Double-precision floating-point 4x4 matrix. (from GLM_GTC_type_precision extension)">f64mat4x4</a>;
  231. <a name="l00202"></a>00202
  232. <a name="l00204"></a>00204 <span class="comment">// Float quaternion types </span>
  233. <a name="l00205"></a>00205
  234. <a name="l00206"></a><a class="code" href="a00246.html#ga38cc7dfd875fb2a5d07101972bf96bfb">00206</a> <span class="keyword">typedef</span> <a class="code" href="a00019.html" title="Template for quaternion.">detail::tquat&lt;f16&gt;</a> <a class="code" href="a00246.html#ga38cc7dfd875fb2a5d07101972bf96bfb" title="Half-precision floating-point quaternion. (from GLM_GTC_type_precision extension)">f16quat</a>;
  235. <a name="l00207"></a><a class="code" href="a00246.html#gad073de7365e4b6771de824b18b0ea7a9">00207</a> <span class="keyword">typedef</span> <a class="code" href="a00019.html" title="Template for quaternion.">detail::tquat&lt;f32&gt;</a> <a class="code" href="a00246.html#gad073de7365e4b6771de824b18b0ea7a9" title="Single-precision floating-point quaternion. (from GLM_GTC_type_precision extension)">f32quat</a>;
  236. <a name="l00208"></a><a class="code" href="a00246.html#ga38a458ff317f21cf58ceed99dde5daaa">00208</a> <span class="keyword">typedef</span> <a class="code" href="a00019.html" title="Template for quaternion.">detail::tquat&lt;f64&gt;</a> <a class="code" href="a00246.html#ga38a458ff317f21cf58ceed99dde5daaa" title="Double-precision floating-point quaternion. (from GLM_GTC_type_precision extension)">f64quat</a>;
  237. <a name="l00209"></a>00209
  238. <a name="l00211"></a>00211
  239. <a name="l00212"></a>00212 }<span class="comment">//namespace type_precision</span>
  240. <a name="l00213"></a>00213 }<span class="comment">//namespace gtc</span>
  241. <a name="l00214"></a>00214 }<span class="comment">//namespace glm</span>
  242. <a name="l00215"></a>00215
  243. <a name="l00216"></a>00216 <span class="preprocessor">#include &quot;type_precision.inl&quot;</span>
  244. <a name="l00217"></a>00217
  245. <a name="l00218"></a>00218 <span class="keyword">namespace </span>glm{<span class="keyword">using namespace </span>gtc::type_precision;}
  246. <a name="l00219"></a>00219
  247. <a name="l00220"></a>00220 <span class="preprocessor">#endif//glm_gtc_type_precision</span>
  248. </pre></div></div>
  249. </div>
  250. <hr class="footer"/><address class="footer"><small>Generated by&#160;
  251. <a href="http://www.doxygen.org/index.html">
  252. <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address>
  253. </body>
  254. </html>