├── .gitignore ├── CMakeLists.txt ├── INSTRUCTION.md ├── LICENSE ├── Project Pitch & Milestones.pdf ├── README.md ├── TXAA.md ├── bin ├── RelWithDebInfo │ ├── CloudScapes.exe │ ├── CloudScapes.ilk │ ├── CloudScapes.pdb │ ├── threads.exe │ ├── threads.ilk │ ├── threads.pdb │ ├── vulkan.pdb │ ├── windows.exe │ ├── windows.ilk │ └── windows.pdb └── Release │ ├── 0_helloWindow.exe │ ├── 1_helloTriangle.exe │ ├── 2_helloVertexBuffers.exe │ ├── 3_helloUniformBuffers.exe │ ├── 4_helloCompute.exe │ ├── 5_helloTessellation.exe │ ├── CloudScapes.exe │ ├── boing.exe │ ├── clipboard.exe │ ├── cursor.exe │ ├── empty.exe │ ├── events.exe │ ├── gamma.exe │ ├── gears.exe │ ├── glfwinfo.exe │ ├── heightmap.exe │ ├── icon.exe │ ├── iconify.exe │ ├── inputlag.exe │ ├── joysticks.exe │ ├── monitors.exe │ ├── msaa.exe │ ├── offscreen.exe │ ├── particles.exe │ ├── reopen.exe │ ├── sharing.exe │ ├── simple.exe │ ├── splitview.exe │ ├── tearing.exe │ ├── threads.exe │ ├── timeout.exe │ ├── title.exe │ ├── wave.exe │ └── windows.exe ├── cmake ├── FindVulkan.cmake └── FindXCB.cmake ├── dithering.md ├── external ├── CMakeLists.txt ├── GLFW │ ├── .appveyor.yml │ ├── .gitattributes │ ├── .github │ │ └── CONTRIBUTING.md │ ├── .gitignore │ ├── .travis.yml │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── MacOSXBundleInfo.plist.in │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindMir.cmake │ │ │ ├── FindOSMesa.cmake │ │ │ ├── FindVulkan.cmake │ │ │ ├── FindWaylandProtocols.cmake │ │ │ └── FindXKBCommon.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── LICENSE.md │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── linmath.h │ │ ├── mingw │ │ │ ├── _mingw_dxhelper.h │ │ │ ├── dinput.h │ │ │ └── xinput.h │ │ ├── nuklear.h │ │ ├── nuklear_glfw_gl2.h │ │ ├── stb_image_write.h │ │ ├── tinycthread.c │ │ ├── tinycthread.h │ │ ├── vs2008 │ │ │ └── stdint.h │ │ └── vulkan │ │ │ ├── vk_platform.h │ │ │ └── vulkan.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.less │ │ ├── footer.html │ │ ├── header.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── spaces.svg │ │ ├── vulkan.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── glfw.icns │ │ ├── glfw.ico │ │ ├── glfw.rc │ │ ├── heightmap.c │ │ ├── offscreen.c │ │ ├── particles.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.h │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mappings.h │ │ ├── mappings.h.in │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── null_init.c │ │ ├── null_joystick.c │ │ ├── null_joystick.h │ │ ├── null_monitor.c │ │ ├── null_platform.h │ │ ├── null_window.c │ │ ├── osmesa_context.c │ │ ├── osmesa_context.h │ │ ├── posix_thread.c │ │ ├── posix_thread.h │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── vulkan.c │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_joystick.h │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_thread.c │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── icon.c │ │ ├── iconify.c │ │ ├── inputlag.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── msaa.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── timeout.c │ │ ├── title.c │ │ ├── vulkan.c │ │ └── windows.c ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ ├── glm.pc.in │ │ ├── glmBuildConfig.cmake.in │ │ └── glmConfig.cmake.in │ ├── cmake_uninstall.cmake.in │ ├── doc │ │ ├── api │ │ │ ├── a00001.html │ │ │ ├── a00001_source.html │ │ │ ├── a00002.html │ │ │ ├── a00002_source.html │ │ │ ├── a00003.html │ │ │ ├── a00003_source.html │ │ │ ├── a00004.html │ │ │ ├── a00004_source.html │ │ │ ├── a00005.html │ │ │ ├── a00005_source.html │ │ │ ├── a00006.html │ │ │ ├── a00006_source.html │ │ │ ├── a00007.html │ │ │ ├── a00007_source.html │ │ │ ├── a00008.html │ │ │ ├── a00008_source.html │ │ │ ├── a00009.html │ │ │ ├── a00009_source.html │ │ │ ├── a00010.html │ │ │ ├── a00010_source.html │ │ │ ├── a00011.html │ │ │ ├── a00011_source.html │ │ │ ├── a00012.html │ │ │ ├── a00012_source.html │ │ │ ├── a00013.html │ │ │ ├── a00013_source.html │ │ │ ├── a00014.html │ │ │ ├── a00014_source.html │ │ │ ├── a00015.html │ │ │ ├── a00015_source.html │ │ │ ├── a00016.html │ │ │ ├── a00016_source.html │ │ │ ├── a00017.html │ │ │ ├── a00017_source.html │ │ │ ├── a00018.html │ │ │ ├── a00018_source.html │ │ │ ├── a00019_source.html │ │ │ ├── a00020.html │ │ │ ├── a00020_source.html │ │ │ ├── a00021.html │ │ │ ├── a00021_source.html │ │ │ ├── a00022.html │ │ │ ├── a00022_source.html │ │ │ ├── a00023.html │ │ │ ├── a00023_source.html │ │ │ ├── a00024.html │ │ │ ├── a00024_source.html │ │ │ ├── a00025.html │ │ │ ├── a00025_source.html │ │ │ ├── a00026.html │ │ │ ├── a00026_source.html │ │ │ ├── a00027.html │ │ │ ├── a00027_source.html │ │ │ ├── a00028.html │ │ │ ├── a00028_source.html │ │ │ ├── a00029.html │ │ │ ├── a00029_source.html │ │ │ ├── a00030.html │ │ │ ├── a00030_source.html │ │ │ ├── a00031.html │ │ │ ├── a00031_source.html │ │ │ ├── a00032.html │ │ │ ├── a00032_source.html │ │ │ ├── a00033.html │ │ │ ├── a00033_source.html │ │ │ ├── a00034.html │ │ │ ├── a00034_source.html │ │ │ ├── a00035.html │ │ │ ├── a00035_source.html │ │ │ ├── a00036.html │ │ │ ├── a00036_source.html │ │ │ ├── a00037.html │ │ │ ├── a00037_source.html │ │ │ ├── a00038.html │ │ │ ├── a00038_source.html │ │ │ ├── a00039.html │ │ │ ├── a00039_source.html │ │ │ ├── a00040.html │ │ │ ├── a00040_source.html │ │ │ ├── a00041.html │ │ │ ├── a00041_source.html │ │ │ ├── a00042.html │ │ │ ├── a00042_source.html │ │ │ ├── a00043.html │ │ │ ├── a00043_source.html │ │ │ ├── a00044.html │ │ │ ├── a00044_source.html │ │ │ ├── a00045_source.html │ │ │ ├── a00046.html │ │ │ ├── a00046_source.html │ │ │ ├── a00047.html │ │ │ ├── a00047_source.html │ │ │ ├── a00048.html │ │ │ ├── a00048_source.html │ │ │ ├── a00049.html │ │ │ ├── a00049_source.html │ │ │ ├── a00050.html │ │ │ ├── a00050_source.html │ │ │ ├── a00051.html │ │ │ ├── a00051_source.html │ │ │ ├── a00052.html │ │ │ ├── a00052_source.html │ │ │ ├── a00053.html │ │ │ ├── a00053_source.html │ │ │ ├── a00054.html │ │ │ ├── a00054_source.html │ │ │ ├── a00055.html │ │ │ ├── a00055_source.html │ │ │ ├── a00056.html │ │ │ ├── a00056_source.html │ │ │ ├── a00057.html │ │ │ ├── a00057_source.html │ │ │ ├── a00058.html │ │ │ ├── a00058_source.html │ │ │ ├── a00059.html │ │ │ ├── a00059_source.html │ │ │ ├── a00060.html │ │ │ ├── a00060_source.html │ │ │ ├── a00061.html │ │ │ ├── a00061_source.html │ │ │ ├── a00062.html │ │ │ ├── a00062_source.html │ │ │ ├── a00063.html │ │ │ ├── a00063_source.html │ │ │ ├── a00064.html │ │ │ ├── a00064_source.html │ │ │ ├── a00065.html │ │ │ ├── a00065_source.html │ │ │ ├── a00066.html │ │ │ ├── a00066_source.html │ │ │ ├── a00067.html │ │ │ ├── a00067_source.html │ │ │ ├── a00068.html │ │ │ ├── a00068_source.html │ │ │ ├── a00069.html │ │ │ ├── a00069_source.html │ │ │ ├── a00070.html │ │ │ ├── a00070_source.html │ │ │ ├── a00071.html │ │ │ ├── a00071_source.html │ │ │ ├── a00072.html │ │ │ ├── a00072_source.html │ │ │ ├── a00073.html │ │ │ ├── a00073_source.html │ │ │ ├── a00074.html │ │ │ ├── a00074_source.html │ │ │ ├── a00075.html │ │ │ ├── a00075_source.html │ │ │ ├── a00076.html │ │ │ ├── a00076_source.html │ │ │ ├── a00077.html │ │ │ ├── a00077_source.html │ │ │ ├── a00078.html │ │ │ ├── a00078_source.html │ │ │ ├── a00079.html │ │ │ ├── a00079_source.html │ │ │ ├── a00080.html │ │ │ ├── a00080_source.html │ │ │ ├── a00081.html │ │ │ ├── a00081_source.html │ │ │ ├── a00082.html │ │ │ ├── a00082_source.html │ │ │ ├── a00083.html │ │ │ ├── a00083_source.html │ │ │ ├── a00084.html │ │ │ ├── a00084_source.html │ │ │ ├── a00085.html │ │ │ ├── a00085_source.html │ │ │ ├── a00086.html │ │ │ ├── a00086_source.html │ │ │ ├── a00087.html │ │ │ ├── a00087_source.html │ │ │ ├── a00088.html │ │ │ ├── a00088_source.html │ │ │ ├── a00089.html │ │ │ ├── a00089_source.html │ │ │ ├── a00090.html │ │ │ ├── a00090_source.html │ │ │ ├── a00091.html │ │ │ ├── a00091_source.html │ │ │ ├── a00092.html │ │ │ ├── a00092_source.html │ │ │ ├── a00093.html │ │ │ ├── a00093_source.html │ │ │ ├── a00094.html │ │ │ ├── a00094_source.html │ │ │ ├── a00095.html │ │ │ ├── a00095_source.html │ │ │ ├── a00096.html │ │ │ ├── a00096_source.html │ │ │ ├── a00097.html │ │ │ ├── a00097_source.html │ │ │ ├── a00098.html │ │ │ ├── a00098_source.html │ │ │ ├── a00099.html │ │ │ ├── a00099_source.html │ │ │ ├── a00100.html │ │ │ ├── a00100_source.html │ │ │ ├── a00101.html │ │ │ ├── a00101_source.html │ │ │ ├── a00102.html │ │ │ ├── a00102_source.html │ │ │ ├── a00103.html │ │ │ ├── a00103_source.html │ │ │ ├── a00104.html │ │ │ ├── a00104_source.html │ │ │ ├── a00105.html │ │ │ ├── a00105_source.html │ │ │ ├── a00106.html │ │ │ ├── a00106_source.html │ │ │ ├── a00107.html │ │ │ ├── a00107_source.html │ │ │ ├── a00108.html │ │ │ ├── a00108_source.html │ │ │ ├── a00109.html │ │ │ ├── a00109_source.html │ │ │ ├── a00110.html │ │ │ ├── a00110_source.html │ │ │ ├── a00111.html │ │ │ ├── a00111_source.html │ │ │ ├── a00112.html │ │ │ ├── a00112_source.html │ │ │ ├── a00113.html │ │ │ ├── a00113_source.html │ │ │ ├── a00114.html │ │ │ ├── a00114_source.html │ │ │ ├── a00115.html │ │ │ ├── a00115_source.html │ │ │ ├── a00116.html │ │ │ ├── a00116_source.html │ │ │ ├── a00117.html │ │ │ ├── a00117_source.html │ │ │ ├── a00118.html │ │ │ ├── a00118_source.html │ │ │ ├── a00119.html │ │ │ ├── a00119_source.html │ │ │ ├── a00120.html │ │ │ ├── a00120_source.html │ │ │ ├── a00121.html │ │ │ ├── a00121_source.html │ │ │ ├── a00122.html │ │ │ ├── a00122_source.html │ │ │ ├── a00123.html │ │ │ ├── a00123_source.html │ │ │ ├── a00124.html │ │ │ ├── a00124_source.html │ │ │ ├── a00125.html │ │ │ ├── a00125_source.html │ │ │ ├── a00126.html │ │ │ ├── a00126_source.html │ │ │ ├── a00127.html │ │ │ ├── a00127_source.html │ │ │ ├── a00128.html │ │ │ ├── a00128_source.html │ │ │ ├── a00129.html │ │ │ ├── a00129_source.html │ │ │ ├── a00130.html │ │ │ ├── a00130_source.html │ │ │ ├── a00131.html │ │ │ ├── a00131_source.html │ │ │ ├── a00132.html │ │ │ ├── a00132_source.html │ │ │ ├── a00133.html │ │ │ ├── a00133_source.html │ │ │ ├── a00134.html │ │ │ ├── a00134_source.html │ │ │ ├── a00139.html │ │ │ ├── a00140.html │ │ │ ├── a00141.html │ │ │ ├── a00142.html │ │ │ ├── a00143.html │ │ │ ├── a00144.html │ │ │ ├── a00145.html │ │ │ ├── a00146.html │ │ │ ├── a00147.html │ │ │ ├── a00148.html │ │ │ ├── a00149.html │ │ │ ├── a00150.html │ │ │ ├── a00151.html │ │ │ ├── a00152.html │ │ │ ├── a00153.html │ │ │ ├── a00154.html │ │ │ ├── a00155.html │ │ │ ├── a00156.html │ │ │ ├── a00157.html │ │ │ ├── a00158.html │ │ │ ├── a00159.html │ │ │ ├── a00160.html │ │ │ ├── a00161.html │ │ │ ├── a00162.html │ │ │ ├── a00163.html │ │ │ ├── a00164.html │ │ │ ├── a00165.html │ │ │ ├── a00166.html │ │ │ ├── a00167.html │ │ │ ├── a00168.html │ │ │ ├── a00169.html │ │ │ ├── a00170.html │ │ │ ├── a00171.html │ │ │ ├── a00172.html │ │ │ ├── a00173.html │ │ │ ├── a00174.html │ │ │ ├── a00175.html │ │ │ ├── a00176.html │ │ │ ├── a00177.html │ │ │ ├── a00178.html │ │ │ ├── a00179.html │ │ │ ├── a00180.html │ │ │ ├── a00181.html │ │ │ ├── a00182.html │ │ │ ├── a00183.html │ │ │ ├── a00184.html │ │ │ ├── a00185.html │ │ │ ├── a00186.html │ │ │ ├── a00187.html │ │ │ ├── a00188.html │ │ │ ├── a00189.html │ │ │ ├── a00190.html │ │ │ ├── a00191.html │ │ │ ├── a00192.html │ │ │ ├── a00193.html │ │ │ ├── a00194.html │ │ │ ├── a00195.html │ │ │ ├── a00196.html │ │ │ ├── a00197.html │ │ │ ├── a00198.html │ │ │ ├── a00199.html │ │ │ ├── a00200.html │ │ │ ├── a00201.html │ │ │ ├── a00202.html │ │ │ ├── a00203.html │ │ │ ├── a00204.html │ │ │ ├── a00205.html │ │ │ ├── a00206.html │ │ │ ├── a00207.html │ │ │ ├── a00208.html │ │ │ ├── a00209.html │ │ │ ├── a00210.html │ │ │ ├── a00211.html │ │ │ ├── a00212.html │ │ │ ├── a00213.html │ │ │ ├── a00214.html │ │ │ ├── a00215.html │ │ │ ├── a00216.html │ │ │ ├── a00217.html │ │ │ ├── a00218.html │ │ │ ├── a00219.html │ │ │ ├── a00220.html │ │ │ ├── a00221.html │ │ │ ├── a00222.html │ │ │ ├── a00223.html │ │ │ ├── a00224.html │ │ │ ├── a00225.html │ │ │ ├── a00226.html │ │ │ ├── a00227.html │ │ │ ├── a00228.html │ │ │ ├── a00229.html │ │ │ ├── a00230.html │ │ │ ├── a00231.html │ │ │ ├── a00232.html │ │ │ ├── a00233.html │ │ │ ├── arrowdown.png │ │ │ ├── arrowright.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── dir_304be5dfae1339a7705426c0b536faf2.html │ │ │ ├── dir_45973f864e07b2505003ae343b7c8af7.html │ │ │ ├── dir_48eca2e6cf73effdec262031e861eeb0.html │ │ │ ├── dir_7997edb062bdde9a99cb6835d42b0d9d.html │ │ │ ├── dir_9344afb825aed5e2f5be1d2015dde43c.html │ │ │ ├── dir_934f46a345653ef2b3014a1b37a162c1.html │ │ │ ├── dir_98f7f9d41f9d3029bd68cf237526a774.html │ │ │ ├── dir_da256b9dd32ba43e2eaa8a2832c37f1b.html │ │ │ ├── dir_e8f3c1046ba4b357711397765359cd18.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── logo-mini.png │ │ │ ├── man.doxy │ │ │ ├── modules.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── pages.doxy │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_10.html │ │ │ │ ├── all_10.js │ │ │ │ ├── all_11.html │ │ │ │ ├── all_11.js │ │ │ │ ├── all_12.html │ │ │ │ ├── all_12.js │ │ │ │ ├── all_13.html │ │ │ │ ├── all_13.js │ │ │ │ ├── all_14.html │ │ │ │ ├── all_14.js │ │ │ │ ├── all_15.html │ │ │ │ ├── all_15.js │ │ │ │ ├── all_16.html │ │ │ │ ├── all_16.js │ │ │ │ ├── all_17.html │ │ │ │ ├── all_17.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── close.png │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_10.html │ │ │ │ ├── files_10.js │ │ │ │ ├── files_11.html │ │ │ │ ├── files_11.js │ │ │ │ ├── files_12.html │ │ │ │ ├── files_12.js │ │ │ │ ├── files_13.html │ │ │ │ ├── files_13.js │ │ │ │ ├── files_14.html │ │ │ │ ├── files_14.js │ │ │ │ ├── files_15.html │ │ │ │ ├── files_15.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── files_6.html │ │ │ │ ├── files_6.js │ │ │ │ ├── files_7.html │ │ │ │ ├── files_7.js │ │ │ │ ├── files_8.html │ │ │ │ ├── files_8.js │ │ │ │ ├── files_9.html │ │ │ │ ├── files_9.js │ │ │ │ ├── files_a.html │ │ │ │ ├── files_a.js │ │ │ │ ├── files_b.html │ │ │ │ ├── files_b.js │ │ │ │ ├── files_c.html │ │ │ │ ├── files_c.js │ │ │ │ ├── files_d.html │ │ │ │ ├── files_d.js │ │ │ │ ├── files_e.html │ │ │ │ ├── files_e.js │ │ │ │ ├── files_f.html │ │ │ │ ├── files_f.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── functions_1.html │ │ │ │ ├── functions_1.js │ │ │ │ ├── functions_10.html │ │ │ │ ├── functions_10.js │ │ │ │ ├── functions_11.html │ │ │ │ ├── functions_11.js │ │ │ │ ├── functions_12.html │ │ │ │ ├── functions_12.js │ │ │ │ ├── functions_13.html │ │ │ │ ├── functions_13.js │ │ │ │ ├── functions_14.html │ │ │ │ ├── functions_14.js │ │ │ │ ├── functions_15.html │ │ │ │ ├── functions_15.js │ │ │ │ ├── functions_16.html │ │ │ │ ├── functions_16.js │ │ │ │ ├── functions_2.html │ │ │ │ ├── functions_2.js │ │ │ │ ├── functions_3.html │ │ │ │ ├── functions_3.js │ │ │ │ ├── functions_4.html │ │ │ │ ├── functions_4.js │ │ │ │ ├── functions_5.html │ │ │ │ ├── functions_5.js │ │ │ │ ├── functions_6.html │ │ │ │ ├── functions_6.js │ │ │ │ ├── functions_7.html │ │ │ │ ├── functions_7.js │ │ │ │ ├── functions_8.html │ │ │ │ ├── functions_8.js │ │ │ │ ├── functions_9.html │ │ │ │ ├── functions_9.js │ │ │ │ ├── functions_a.html │ │ │ │ ├── functions_a.js │ │ │ │ ├── functions_b.html │ │ │ │ ├── functions_b.js │ │ │ │ ├── functions_c.html │ │ │ │ ├── functions_c.js │ │ │ │ ├── functions_d.html │ │ │ │ ├── functions_d.js │ │ │ │ ├── functions_e.html │ │ │ │ ├── functions_e.js │ │ │ │ ├── functions_f.html │ │ │ │ ├── functions_f.js │ │ │ │ ├── groups_0.html │ │ │ │ ├── groups_0.js │ │ │ │ ├── groups_1.html │ │ │ │ ├── groups_1.js │ │ │ │ ├── groups_2.html │ │ │ │ ├── groups_2.js │ │ │ │ ├── groups_3.html │ │ │ │ ├── groups_3.js │ │ │ │ ├── groups_4.html │ │ │ │ ├── groups_4.js │ │ │ │ ├── groups_5.html │ │ │ │ ├── groups_5.js │ │ │ │ ├── groups_6.html │ │ │ │ ├── groups_6.js │ │ │ │ ├── groups_7.html │ │ │ │ ├── groups_7.js │ │ │ │ ├── groups_8.html │ │ │ │ ├── groups_8.js │ │ │ │ ├── groups_9.html │ │ │ │ ├── groups_9.js │ │ │ │ ├── groups_a.html │ │ │ │ ├── groups_a.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── searchdata.js │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── typedefs_1.html │ │ │ │ ├── typedefs_1.js │ │ │ │ ├── typedefs_2.html │ │ │ │ ├── typedefs_2.js │ │ │ │ ├── typedefs_3.html │ │ │ │ ├── typedefs_3.js │ │ │ │ ├── typedefs_4.html │ │ │ │ ├── typedefs_4.js │ │ │ │ ├── typedefs_5.html │ │ │ │ ├── typedefs_5.js │ │ │ │ ├── typedefs_6.html │ │ │ │ ├── typedefs_6.js │ │ │ │ ├── typedefs_7.html │ │ │ │ ├── typedefs_7.js │ │ │ │ ├── typedefs_8.html │ │ │ │ ├── typedefs_8.js │ │ │ │ ├── typedefs_9.html │ │ │ │ ├── typedefs_9.js │ │ │ │ ├── typedefs_a.html │ │ │ │ ├── typedefs_a.js │ │ │ │ ├── typedefs_b.html │ │ │ │ ├── typedefs_b.js │ │ │ │ ├── typedefs_c.html │ │ │ │ ├── typedefs_c.js │ │ │ │ ├── typedefs_d.html │ │ │ │ └── typedefs_d.js │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ │ ├── man.doxy │ │ ├── manual │ │ │ ├── frontpage1.png │ │ │ ├── frontpage2.png │ │ │ ├── g-truc.png │ │ │ ├── logo-mini.png │ │ │ ├── noise-perlin1.jpg │ │ │ ├── noise-perlin2.jpg │ │ │ ├── noise-perlin3.jpg │ │ │ ├── noise-perlin4.png │ │ │ ├── noise-perlin5.png │ │ │ ├── noise-perlin6.png │ │ │ ├── noise-simplex1.jpg │ │ │ ├── noise-simplex2.jpg │ │ │ ├── noise-simplex3.jpg │ │ │ ├── random-ballrand.png │ │ │ ├── random-circularrand.png │ │ │ ├── random-diskrand.png │ │ │ ├── random-gaussrand.png │ │ │ ├── random-linearrand.png │ │ │ ├── random-sphericalrand.png │ │ │ ├── references-cinder.png │ │ │ ├── references-glsl4book.jpg │ │ │ ├── references-leosfortune.jpeg │ │ │ ├── references-leosfortune2.jpg │ │ │ ├── references-opencloth1.png │ │ │ ├── references-opencloth3.png │ │ │ ├── references-outerra1.jpg │ │ │ ├── references-outerra2.jpg │ │ │ ├── references-outerra3.jpg │ │ │ └── references-outerra4.jpg │ │ └── theme │ │ │ ├── doxygen.css │ │ │ └── tabs.css │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── vector_relational.hpp │ │ │ └── vector_relational.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ ├── vec1.hpp │ │ │ └── vec1.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ ├── CMakeLists.txt │ │ │ └── bug_ms_vec_static.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_float.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── ext │ │ │ ├── CMakeLists.txt │ │ │ ├── ext_vec1.cpp │ │ │ └── ext_vector_relational.cpp │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_aligned.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ └── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx.cpp │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_encoding.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extended_min_max.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_exterior_product.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_functions.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_number_precision.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_texture.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_type_trait.cpp │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── conan-package │ │ ├── .gitignore │ │ ├── FindGLM.cmake │ │ ├── README.md │ │ ├── conanfile.py │ │ ├── lib_licenses │ │ │ ├── LICENSE1.txt │ │ │ └── LICENSE2.txt │ │ └── test_package │ │ │ ├── CMakeLists.txt │ │ │ ├── conanfile.py │ │ │ └── main.cpp │ │ ├── glm.natvis │ │ └── usertype.dat ├── imgui │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── TODO.txt │ ├── examples │ │ ├── .gitignore │ │ ├── README.txt │ │ ├── allegro5_example │ │ │ ├── README.md │ │ │ ├── imgui_impl_a5.cpp │ │ │ ├── imgui_impl_a5.h │ │ │ └── main.cpp │ │ ├── apple_example │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── imguiex-ios │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── GameViewController.h │ │ │ │ ├── GameViewController.m │ │ │ │ ├── Images.xcassets │ │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_imgui_60@2x~iphone.png │ │ │ │ │ │ ├── icon_imgui_60@3x~iphone.png │ │ │ │ │ │ ├── icon_imgui_76@2x~ipad.png │ │ │ │ │ │ └── icon_imgui_76~ipad.png │ │ │ │ ├── Info.plist │ │ │ │ ├── Shaders │ │ │ │ │ ├── Shader.fsh │ │ │ │ │ └── Shader.vsh │ │ │ │ ├── debug_hud.cpp │ │ │ │ ├── debug_hud.h │ │ │ │ ├── imgui_ex_icon.png │ │ │ │ ├── imgui_impl_ios.h │ │ │ │ ├── imgui_impl_ios.mm │ │ │ │ └── main.m │ │ │ ├── imguiex-osx │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── icon_imgui_180x180.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ │ └── imguiex.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── directx10_example │ │ │ ├── build_win32.bat │ │ │ ├── directx10_example.vcxproj │ │ │ ├── directx10_example.vcxproj.filters │ │ │ ├── imgui_impl_dx10.cpp │ │ │ ├── imgui_impl_dx10.h │ │ │ └── main.cpp │ │ ├── directx11_example │ │ │ ├── build_win32.bat │ │ │ ├── directx11_example.vcxproj │ │ │ ├── directx11_example.vcxproj.filters │ │ │ ├── imgui_impl_dx11.cpp │ │ │ ├── imgui_impl_dx11.h │ │ │ └── main.cpp │ │ ├── directx9_example │ │ │ ├── build_win32.bat │ │ │ ├── directx9_example.vcxproj │ │ │ ├── directx9_example.vcxproj.filters │ │ │ ├── imgui_impl_dx9.cpp │ │ │ ├── imgui_impl_dx9.h │ │ │ └── main.cpp │ │ ├── imgui_examples_msvc2010.sln │ │ ├── libs │ │ │ ├── gl3w │ │ │ │ └── GL │ │ │ │ │ ├── gl3w.c │ │ │ │ │ ├── gl3w.h │ │ │ │ │ └── glcorearb.h │ │ │ ├── glfw │ │ │ │ ├── COPYING.txt │ │ │ │ ├── include │ │ │ │ │ └── GLFW │ │ │ │ │ │ ├── glfw3.h │ │ │ │ │ │ └── glfw3native.h │ │ │ │ ├── lib-vc2010-32 │ │ │ │ │ └── glfw3.lib │ │ │ │ └── lib-vc2010-64 │ │ │ │ │ └── glfw3.lib │ │ │ └── usynergy │ │ │ │ ├── uSynergy.c │ │ │ │ └── uSynergy.h │ │ ├── marmalade_example │ │ │ ├── data │ │ │ │ └── app.icf │ │ │ ├── imgui_impl_marmalade.cpp │ │ │ ├── imgui_impl_marmalade.h │ │ │ ├── main.cpp │ │ │ └── marmalade_example.mkb │ │ ├── opengl2_example │ │ │ ├── Makefile │ │ │ ├── build_win32.bat │ │ │ ├── imgui_impl_glfw.cpp │ │ │ ├── imgui_impl_glfw.h │ │ │ ├── main.cpp │ │ │ ├── opengl2_example.vcxproj │ │ │ └── opengl2_example.vcxproj.filters │ │ ├── opengl3_example │ │ │ ├── Makefile │ │ │ ├── build_win32.bat │ │ │ ├── imgui_impl_glfw_gl3.cpp │ │ │ ├── imgui_impl_glfw_gl3.h │ │ │ ├── main.cpp │ │ │ ├── opengl3_example.vcxproj │ │ │ └── opengl3_example.vcxproj.filters │ │ ├── sdl_opengl2_example │ │ │ ├── README.md │ │ │ ├── build_win32.bat │ │ │ ├── imgui_impl_sdl.cpp │ │ │ ├── imgui_impl_sdl.h │ │ │ └── main.cpp │ │ ├── sdl_opengl3_example │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── build_win32.bat │ │ │ ├── imgui_impl_sdl_gl3.cpp │ │ │ ├── imgui_impl_sdl_gl3.h │ │ │ └── main.cpp │ │ └── vulkan_example │ │ │ ├── CMakeLists.txt │ │ │ ├── build_win32.bat │ │ │ ├── build_win64.bat │ │ │ ├── gen_spv.sh │ │ │ ├── glsl_shader.frag │ │ │ ├── glsl_shader.frag.u32 │ │ │ ├── glsl_shader.vert │ │ │ ├── glsl_shader.vert.u32 │ │ │ ├── imgui_impl_glfw_vulkan.cpp │ │ │ ├── imgui_impl_glfw_vulkan.h │ │ │ └── main.cpp │ ├── extra_fonts │ │ ├── Cousine-Regular.ttf │ │ ├── DroidSans.ttf │ │ ├── Karla-Regular.ttf │ │ ├── ProggyClean.ttf │ │ ├── ProggyTiny.ttf │ │ ├── README.txt │ │ ├── Roboto-Medium.ttf │ │ └── binary_to_compressed_c.cpp │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── stb_rect_pack.h │ ├── stb_textedit.h │ └── stb_truetype.h ├── stb_image.h ├── stb_image_write.h └── tiny_obj_loader.h ├── images ├── FinalLightingModel.png ├── READMEImages │ ├── AngularSampling.png │ ├── CheapSampling.png │ ├── CloudErosion.png │ ├── ConeSampling.png │ ├── InOutOfCloud.png │ ├── LightCalculationsNaive.png │ ├── LowFrequencyNoiseChannels.png │ ├── beer01.PNG │ ├── beer02.PNG │ ├── blue-sky.PNG │ ├── cheapSamplingChart.PNG │ ├── cloud01.PNG │ ├── cloud02.PNG │ ├── clouds03.PNG │ ├── clouds04.PNG │ ├── clouds05.PNG │ ├── cmakegui2-1.PNG │ ├── cmakegui2.PNG │ ├── curlNoise.png │ ├── dusk-ish.PNG │ ├── finalRender.PNG │ ├── godRayChart.PNG │ ├── godRayMask.PNG │ ├── godraycompositeOnCloudDensity.PNG │ ├── godraysComposited.png │ ├── hg01.PNG │ ├── hg02.PNG │ ├── hg03.PNG │ ├── hg04.PNG │ ├── highFrequencyDetail.png │ ├── horizonLine.png │ ├── in01.PNG │ ├── in02.PNG │ ├── in03.PNG │ ├── in04.PNG │ ├── layerLayout.png │ ├── lightingNotToneMapped.png │ ├── lightingProbs.PNG │ ├── lightingToneMapped.png │ ├── meg01.gif │ ├── onlyGodRays.png │ ├── pipelinelayout.png │ ├── raymarching.png │ ├── remapFunctionDemonstration.png │ ├── reprojectionPerformance.PNG │ ├── sampleoptimisation.png │ └── sobeltest.PNG ├── beerslaw.png ├── beerslawAndHG.png ├── beerspowderlaw.png ├── cloud modelling.png ├── erodeclouds.png ├── imguiExample.png └── note.png └── src ├── CMakeLists.txt └── CloudScapes ├── BufferUtils.cpp ├── BufferUtils.h ├── Commands.cpp ├── Commands.h ├── FormatUtils.h ├── Image.cpp ├── Image.h ├── ImageLoadingUtility.cpp ├── ImageLoadingUtility.h ├── Model.cpp ├── Model.h ├── Renderer.cpp ├── Renderer.h ├── Scene.cpp ├── Scene.h ├── ShaderModule.cpp ├── ShaderModule.h ├── Sky.cpp ├── Sky.h ├── SwapChain.cpp ├── SwapChain.h ├── Texture2D.cpp ├── Texture2D.h ├── Texture3D.cpp ├── Texture3D.h ├── Vertex.h ├── VulkanDevice.cpp ├── VulkanDevice.h ├── VulkanInitializers.h ├── VulkanInstance.cpp ├── VulkanInstance.h ├── camera.cpp ├── camera.h ├── forward.h ├── main.cpp ├── models ├── chaletModel.obj ├── teapot.obj └── thinCube.obj ├── shaders ├── cloudRayMarch.comp ├── geometryPlain.frag ├── geometryPlain.vert ├── postProcess_GenericVertShader.vert ├── postProcess_GodRays.frag ├── postProcess_TXAA.frag ├── postProcess_ToneMap.frag └── reprojection.comp ├── textures ├── CloudTextures │ ├── HighFrequency │ │ ├── HighFrequency(1).tga │ │ ├── HighFrequency(10).tga │ │ ├── HighFrequency(11).tga │ │ ├── HighFrequency(12).tga │ │ ├── HighFrequency(13).tga │ │ ├── HighFrequency(14).tga │ │ ├── HighFrequency(15).tga │ │ ├── HighFrequency(16).tga │ │ ├── HighFrequency(17).tga │ │ ├── HighFrequency(18).tga │ │ ├── HighFrequency(19).tga │ │ ├── HighFrequency(2).tga │ │ ├── HighFrequency(20).tga │ │ ├── HighFrequency(21).tga │ │ ├── HighFrequency(22).tga │ │ ├── HighFrequency(23).tga │ │ ├── HighFrequency(24).tga │ │ ├── HighFrequency(25).tga │ │ ├── HighFrequency(26).tga │ │ ├── HighFrequency(27).tga │ │ ├── HighFrequency(28).tga │ │ ├── HighFrequency(29).tga │ │ ├── HighFrequency(3).tga │ │ ├── HighFrequency(30).tga │ │ ├── HighFrequency(31).tga │ │ ├── HighFrequency(32).tga │ │ ├── HighFrequency(4).tga │ │ ├── HighFrequency(5).tga │ │ ├── HighFrequency(6).tga │ │ ├── HighFrequency(7).tga │ │ ├── HighFrequency(8).tga │ │ └── HighFrequency(9).tga │ ├── LowFrequency │ │ ├── LowFrequency(1).tga │ │ ├── LowFrequency(10).tga │ │ ├── LowFrequency(100).tga │ │ ├── LowFrequency(101).tga │ │ ├── LowFrequency(102).tga │ │ ├── LowFrequency(103).tga │ │ ├── LowFrequency(104).tga │ │ ├── LowFrequency(105).tga │ │ ├── LowFrequency(106).tga │ │ ├── LowFrequency(107).tga │ │ ├── LowFrequency(108).tga │ │ ├── LowFrequency(109).tga │ │ ├── LowFrequency(11).tga │ │ ├── LowFrequency(110).tga │ │ ├── LowFrequency(111).tga │ │ ├── LowFrequency(112).tga │ │ ├── LowFrequency(113).tga │ │ ├── LowFrequency(114).tga │ │ ├── LowFrequency(115).tga │ │ ├── LowFrequency(116).tga │ │ ├── LowFrequency(117).tga │ │ ├── LowFrequency(118).tga │ │ ├── LowFrequency(119).tga │ │ ├── LowFrequency(12).tga │ │ ├── LowFrequency(120).tga │ │ ├── LowFrequency(121).tga │ │ ├── LowFrequency(122).tga │ │ ├── LowFrequency(123).tga │ │ ├── LowFrequency(124).tga │ │ ├── LowFrequency(125).tga │ │ ├── LowFrequency(126).tga │ │ ├── LowFrequency(127).tga │ │ ├── LowFrequency(128).tga │ │ ├── LowFrequency(13).tga │ │ ├── LowFrequency(14).tga │ │ ├── LowFrequency(15).tga │ │ ├── LowFrequency(16).tga │ │ ├── LowFrequency(17).tga │ │ ├── LowFrequency(18).tga │ │ ├── LowFrequency(19).tga │ │ ├── LowFrequency(2).tga │ │ ├── LowFrequency(20).tga │ │ ├── LowFrequency(21).tga │ │ ├── LowFrequency(22).tga │ │ ├── LowFrequency(23).tga │ │ ├── LowFrequency(24).tga │ │ ├── LowFrequency(25).tga │ │ ├── LowFrequency(26).tga │ │ ├── LowFrequency(27).tga │ │ ├── LowFrequency(28).tga │ │ ├── LowFrequency(29).tga │ │ ├── LowFrequency(3).tga │ │ ├── LowFrequency(30).tga │ │ ├── LowFrequency(31).tga │ │ ├── LowFrequency(32).tga │ │ ├── LowFrequency(33).tga │ │ ├── LowFrequency(34).tga │ │ ├── LowFrequency(35).tga │ │ ├── LowFrequency(36).tga │ │ ├── LowFrequency(37).tga │ │ ├── LowFrequency(38).tga │ │ ├── LowFrequency(39).tga │ │ ├── LowFrequency(4).tga │ │ ├── LowFrequency(40).tga │ │ ├── LowFrequency(41).tga │ │ ├── LowFrequency(42).tga │ │ ├── LowFrequency(43).tga │ │ ├── LowFrequency(44).tga │ │ ├── LowFrequency(45).tga │ │ ├── LowFrequency(46).tga │ │ ├── LowFrequency(47).tga │ │ ├── LowFrequency(48).tga │ │ ├── LowFrequency(49).tga │ │ ├── LowFrequency(5).tga │ │ ├── LowFrequency(50).tga │ │ ├── LowFrequency(51).tga │ │ ├── LowFrequency(52).tga │ │ ├── LowFrequency(53).tga │ │ ├── LowFrequency(54).tga │ │ ├── LowFrequency(55).tga │ │ ├── LowFrequency(56).tga │ │ ├── LowFrequency(57).tga │ │ ├── LowFrequency(58).tga │ │ ├── LowFrequency(59).tga │ │ ├── LowFrequency(6).tga │ │ ├── LowFrequency(60).tga │ │ ├── LowFrequency(61).tga │ │ ├── LowFrequency(62).tga │ │ ├── LowFrequency(63).tga │ │ ├── LowFrequency(64).tga │ │ ├── LowFrequency(65).tga │ │ ├── LowFrequency(66).tga │ │ ├── LowFrequency(67).tga │ │ ├── LowFrequency(68).tga │ │ ├── LowFrequency(69).tga │ │ ├── LowFrequency(7).tga │ │ ├── LowFrequency(70).tga │ │ ├── LowFrequency(71).tga │ │ ├── LowFrequency(72).tga │ │ ├── LowFrequency(73).tga │ │ ├── LowFrequency(74).tga │ │ ├── LowFrequency(75).tga │ │ ├── LowFrequency(76).tga │ │ ├── LowFrequency(77).tga │ │ ├── LowFrequency(78).tga │ │ ├── LowFrequency(79).tga │ │ ├── LowFrequency(8).tga │ │ ├── LowFrequency(80).tga │ │ ├── LowFrequency(81).tga │ │ ├── LowFrequency(82).tga │ │ ├── LowFrequency(83).tga │ │ ├── LowFrequency(84).tga │ │ ├── LowFrequency(85).tga │ │ ├── LowFrequency(86).tga │ │ ├── LowFrequency(87).tga │ │ ├── LowFrequency(88).tga │ │ ├── LowFrequency(89).tga │ │ ├── LowFrequency(9).tga │ │ ├── LowFrequency(90).tga │ │ ├── LowFrequency(91).tga │ │ ├── LowFrequency(92).tga │ │ ├── LowFrequency(93).tga │ │ ├── LowFrequency(94).tga │ │ ├── LowFrequency(95).tga │ │ ├── LowFrequency(96).tga │ │ ├── LowFrequency(97).tga │ │ ├── LowFrequency(98).tga │ │ └── LowFrequency(99).tga │ ├── curlNoise.png │ └── weatherMap.png ├── DarkPavement.png ├── GameGround.jpg ├── HighFrequency3DTexture.tga ├── LowFrequency3DTexture.tga ├── Saved3DTexture.tga ├── chalet.jpg └── statue.jpg ├── window.cpp └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /INSTRUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/INSTRUCTION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/LICENSE -------------------------------------------------------------------------------- /Project Pitch & Milestones.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/Project Pitch & Milestones.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/README.md -------------------------------------------------------------------------------- /TXAA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/TXAA.md -------------------------------------------------------------------------------- /bin/RelWithDebInfo/CloudScapes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/CloudScapes.exe -------------------------------------------------------------------------------- /bin/RelWithDebInfo/CloudScapes.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/CloudScapes.ilk -------------------------------------------------------------------------------- /bin/RelWithDebInfo/CloudScapes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/CloudScapes.pdb -------------------------------------------------------------------------------- /bin/RelWithDebInfo/threads.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/threads.exe -------------------------------------------------------------------------------- /bin/RelWithDebInfo/threads.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/threads.ilk -------------------------------------------------------------------------------- /bin/RelWithDebInfo/threads.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/threads.pdb -------------------------------------------------------------------------------- /bin/RelWithDebInfo/vulkan.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/vulkan.pdb -------------------------------------------------------------------------------- /bin/RelWithDebInfo/windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/windows.exe -------------------------------------------------------------------------------- /bin/RelWithDebInfo/windows.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/windows.ilk -------------------------------------------------------------------------------- /bin/RelWithDebInfo/windows.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/RelWithDebInfo/windows.pdb -------------------------------------------------------------------------------- /bin/Release/0_helloWindow.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/0_helloWindow.exe -------------------------------------------------------------------------------- /bin/Release/1_helloTriangle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/1_helloTriangle.exe -------------------------------------------------------------------------------- /bin/Release/2_helloVertexBuffers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/2_helloVertexBuffers.exe -------------------------------------------------------------------------------- /bin/Release/3_helloUniformBuffers.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/3_helloUniformBuffers.exe -------------------------------------------------------------------------------- /bin/Release/4_helloCompute.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/4_helloCompute.exe -------------------------------------------------------------------------------- /bin/Release/5_helloTessellation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/5_helloTessellation.exe -------------------------------------------------------------------------------- /bin/Release/CloudScapes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/CloudScapes.exe -------------------------------------------------------------------------------- /bin/Release/boing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/boing.exe -------------------------------------------------------------------------------- /bin/Release/clipboard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/clipboard.exe -------------------------------------------------------------------------------- /bin/Release/cursor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/cursor.exe -------------------------------------------------------------------------------- /bin/Release/empty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/empty.exe -------------------------------------------------------------------------------- /bin/Release/events.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/events.exe -------------------------------------------------------------------------------- /bin/Release/gamma.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/gamma.exe -------------------------------------------------------------------------------- /bin/Release/gears.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/gears.exe -------------------------------------------------------------------------------- /bin/Release/glfwinfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/glfwinfo.exe -------------------------------------------------------------------------------- /bin/Release/heightmap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/heightmap.exe -------------------------------------------------------------------------------- /bin/Release/icon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/icon.exe -------------------------------------------------------------------------------- /bin/Release/iconify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/iconify.exe -------------------------------------------------------------------------------- /bin/Release/inputlag.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/inputlag.exe -------------------------------------------------------------------------------- /bin/Release/joysticks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/joysticks.exe -------------------------------------------------------------------------------- /bin/Release/monitors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/monitors.exe -------------------------------------------------------------------------------- /bin/Release/msaa.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/msaa.exe -------------------------------------------------------------------------------- /bin/Release/offscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/offscreen.exe -------------------------------------------------------------------------------- /bin/Release/particles.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/particles.exe -------------------------------------------------------------------------------- /bin/Release/reopen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/reopen.exe -------------------------------------------------------------------------------- /bin/Release/sharing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/sharing.exe -------------------------------------------------------------------------------- /bin/Release/simple.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/simple.exe -------------------------------------------------------------------------------- /bin/Release/splitview.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/splitview.exe -------------------------------------------------------------------------------- /bin/Release/tearing.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/tearing.exe -------------------------------------------------------------------------------- /bin/Release/threads.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/threads.exe -------------------------------------------------------------------------------- /bin/Release/timeout.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/timeout.exe -------------------------------------------------------------------------------- /bin/Release/title.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/title.exe -------------------------------------------------------------------------------- /bin/Release/wave.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/wave.exe -------------------------------------------------------------------------------- /bin/Release/windows.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/bin/Release/windows.exe -------------------------------------------------------------------------------- /cmake/FindVulkan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/cmake/FindVulkan.cmake -------------------------------------------------------------------------------- /cmake/FindXCB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/cmake/FindXCB.cmake -------------------------------------------------------------------------------- /dithering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/dithering.md -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/.appveyor.yml -------------------------------------------------------------------------------- /external/GLFW/.gitattributes: -------------------------------------------------------------------------------- 1 | *.m linguist-language=Objective-C 2 | -------------------------------------------------------------------------------- /external/GLFW/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /external/GLFW/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/.gitignore -------------------------------------------------------------------------------- /external/GLFW/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/.travis.yml -------------------------------------------------------------------------------- /external/GLFW/CMake/i686-pc-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/CMake/i686-pc-mingw32.cmake -------------------------------------------------------------------------------- /external/GLFW/CMake/modules/FindMir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/CMake/modules/FindMir.cmake -------------------------------------------------------------------------------- /external/GLFW/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/LICENSE.md -------------------------------------------------------------------------------- /external/GLFW/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/README.md -------------------------------------------------------------------------------- /external/GLFW/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /external/GLFW/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /external/GLFW/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/getopt.c -------------------------------------------------------------------------------- /external/GLFW/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/getopt.h -------------------------------------------------------------------------------- /external/GLFW/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/glad.c -------------------------------------------------------------------------------- /external/GLFW/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/glad/glad.h -------------------------------------------------------------------------------- /external/GLFW/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/linmath.h -------------------------------------------------------------------------------- /external/GLFW/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/mingw/dinput.h -------------------------------------------------------------------------------- /external/GLFW/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/mingw/xinput.h -------------------------------------------------------------------------------- /external/GLFW/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/nuklear.h -------------------------------------------------------------------------------- /external/GLFW/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /external/GLFW/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/stb_image_write.h -------------------------------------------------------------------------------- /external/GLFW/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/tinycthread.c -------------------------------------------------------------------------------- /external/GLFW/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/tinycthread.h -------------------------------------------------------------------------------- /external/GLFW/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /external/GLFW/deps/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/vulkan/vk_platform.h -------------------------------------------------------------------------------- /external/GLFW/deps/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/deps/vulkan/vulkan.h -------------------------------------------------------------------------------- /external/GLFW/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/Doxyfile.in -------------------------------------------------------------------------------- /external/GLFW/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /external/GLFW/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/build.dox -------------------------------------------------------------------------------- /external/GLFW/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/compat.dox -------------------------------------------------------------------------------- /external/GLFW/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/compile.dox -------------------------------------------------------------------------------- /external/GLFW/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/context.dox -------------------------------------------------------------------------------- /external/GLFW/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/extra.css -------------------------------------------------------------------------------- /external/GLFW/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/extra.less -------------------------------------------------------------------------------- /external/GLFW/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/footer.html -------------------------------------------------------------------------------- /external/GLFW/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/header.html -------------------------------------------------------------------------------- /external/GLFW/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/input.dox -------------------------------------------------------------------------------- /external/GLFW/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/internal.dox -------------------------------------------------------------------------------- /external/GLFW/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/intro.dox -------------------------------------------------------------------------------- /external/GLFW/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/main.dox -------------------------------------------------------------------------------- /external/GLFW/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/monitor.dox -------------------------------------------------------------------------------- /external/GLFW/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/moving.dox -------------------------------------------------------------------------------- /external/GLFW/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/news.dox -------------------------------------------------------------------------------- /external/GLFW/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/quick.dox -------------------------------------------------------------------------------- /external/GLFW/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/spaces.svg -------------------------------------------------------------------------------- /external/GLFW/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/vulkan.dox -------------------------------------------------------------------------------- /external/GLFW/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/docs/window.dox -------------------------------------------------------------------------------- /external/GLFW/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/boing.c -------------------------------------------------------------------------------- /external/GLFW/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/gears.c -------------------------------------------------------------------------------- /external/GLFW/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/glfw.icns -------------------------------------------------------------------------------- /external/GLFW/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/glfw.ico -------------------------------------------------------------------------------- /external/GLFW/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/glfw.rc -------------------------------------------------------------------------------- /external/GLFW/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/heightmap.c -------------------------------------------------------------------------------- /external/GLFW/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/offscreen.c -------------------------------------------------------------------------------- /external/GLFW/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/particles.c -------------------------------------------------------------------------------- /external/GLFW/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/simple.c -------------------------------------------------------------------------------- /external/GLFW/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/splitview.c -------------------------------------------------------------------------------- /external/GLFW/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/examples/wave.c -------------------------------------------------------------------------------- /external/GLFW/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /external/GLFW/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /external/GLFW/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_init.m -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_joystick.h -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_joystick.m -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_monitor.m -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_time.c -------------------------------------------------------------------------------- /external/GLFW/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/cocoa_window.m -------------------------------------------------------------------------------- /external/GLFW/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/context.c -------------------------------------------------------------------------------- /external/GLFW/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/egl_context.c -------------------------------------------------------------------------------- /external/GLFW/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/egl_context.h -------------------------------------------------------------------------------- /external/GLFW/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/glfw3.pc.in -------------------------------------------------------------------------------- /external/GLFW/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /external/GLFW/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/glfw_config.h.in -------------------------------------------------------------------------------- /external/GLFW/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/glx_context.c -------------------------------------------------------------------------------- /external/GLFW/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/glx_context.h -------------------------------------------------------------------------------- /external/GLFW/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/init.c -------------------------------------------------------------------------------- /external/GLFW/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/input.c -------------------------------------------------------------------------------- /external/GLFW/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/internal.h -------------------------------------------------------------------------------- /external/GLFW/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/linux_joystick.c -------------------------------------------------------------------------------- /external/GLFW/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/linux_joystick.h -------------------------------------------------------------------------------- /external/GLFW/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mappings.h -------------------------------------------------------------------------------- /external/GLFW/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mappings.h.in -------------------------------------------------------------------------------- /external/GLFW/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mir_init.c -------------------------------------------------------------------------------- /external/GLFW/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mir_monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mir_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/mir_window.c -------------------------------------------------------------------------------- /external/GLFW/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/nsgl_context.h -------------------------------------------------------------------------------- /external/GLFW/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/nsgl_context.m -------------------------------------------------------------------------------- /external/GLFW/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_init.c -------------------------------------------------------------------------------- /external/GLFW/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_joystick.c -------------------------------------------------------------------------------- /external/GLFW/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_joystick.h -------------------------------------------------------------------------------- /external/GLFW/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/null_window.c -------------------------------------------------------------------------------- /external/GLFW/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/osmesa_context.c -------------------------------------------------------------------------------- /external/GLFW/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/osmesa_context.h -------------------------------------------------------------------------------- /external/GLFW/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/posix_thread.c -------------------------------------------------------------------------------- /external/GLFW/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/posix_thread.h -------------------------------------------------------------------------------- /external/GLFW/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/posix_time.c -------------------------------------------------------------------------------- /external/GLFW/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/posix_time.h -------------------------------------------------------------------------------- /external/GLFW/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/vulkan.c -------------------------------------------------------------------------------- /external/GLFW/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wgl_context.c -------------------------------------------------------------------------------- /external/GLFW/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wgl_context.h -------------------------------------------------------------------------------- /external/GLFW/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_init.c -------------------------------------------------------------------------------- /external/GLFW/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_joystick.c -------------------------------------------------------------------------------- /external/GLFW/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_joystick.h -------------------------------------------------------------------------------- /external/GLFW/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_thread.c -------------------------------------------------------------------------------- /external/GLFW/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_time.c -------------------------------------------------------------------------------- /external/GLFW/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/win32_window.c -------------------------------------------------------------------------------- /external/GLFW/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/window.c -------------------------------------------------------------------------------- /external/GLFW/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wl_init.c -------------------------------------------------------------------------------- /external/GLFW/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wl_monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wl_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/wl_window.c -------------------------------------------------------------------------------- /external/GLFW/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/x11_init.c -------------------------------------------------------------------------------- /external/GLFW/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/x11_monitor.c -------------------------------------------------------------------------------- /external/GLFW/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/x11_platform.h -------------------------------------------------------------------------------- /external/GLFW/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/x11_window.c -------------------------------------------------------------------------------- /external/GLFW/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/xkb_unicode.c -------------------------------------------------------------------------------- /external/GLFW/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/src/xkb_unicode.h -------------------------------------------------------------------------------- /external/GLFW/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/CMakeLists.txt -------------------------------------------------------------------------------- /external/GLFW/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/clipboard.c -------------------------------------------------------------------------------- /external/GLFW/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/cursor.c -------------------------------------------------------------------------------- /external/GLFW/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/empty.c -------------------------------------------------------------------------------- /external/GLFW/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/events.c -------------------------------------------------------------------------------- /external/GLFW/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/gamma.c -------------------------------------------------------------------------------- /external/GLFW/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/glfwinfo.c -------------------------------------------------------------------------------- /external/GLFW/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/icon.c -------------------------------------------------------------------------------- /external/GLFW/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/iconify.c -------------------------------------------------------------------------------- /external/GLFW/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/inputlag.c -------------------------------------------------------------------------------- /external/GLFW/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/joysticks.c -------------------------------------------------------------------------------- /external/GLFW/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/monitors.c -------------------------------------------------------------------------------- /external/GLFW/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/msaa.c -------------------------------------------------------------------------------- /external/GLFW/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/reopen.c -------------------------------------------------------------------------------- /external/GLFW/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/sharing.c -------------------------------------------------------------------------------- /external/GLFW/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/tearing.c -------------------------------------------------------------------------------- /external/GLFW/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/threads.c -------------------------------------------------------------------------------- /external/GLFW/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/timeout.c -------------------------------------------------------------------------------- /external/GLFW/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/title.c -------------------------------------------------------------------------------- /external/GLFW/tests/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/vulkan.c -------------------------------------------------------------------------------- /external/GLFW/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/GLFW/tests/windows.c -------------------------------------------------------------------------------- /external/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/.appveyor.yml -------------------------------------------------------------------------------- /external/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/.gitignore -------------------------------------------------------------------------------- /external/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/.travis.yml -------------------------------------------------------------------------------- /external/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/cmake/glm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/cmake/glm.pc.in -------------------------------------------------------------------------------- /external/glm/cmake/glmConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/cmake/glmConfig.cmake.in -------------------------------------------------------------------------------- /external/glm/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /external/glm/doc/api/a00001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00001.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00001_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00001_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00002.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00002_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00002_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00003.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00003_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00003_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00004.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00004_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00004_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00005.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00005_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00005_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00006.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00006_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00006_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00007.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00007_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00007_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00008.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00008_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00008_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00009.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00009_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00009_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00010.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00010_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00010_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00011.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00011_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00011_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00012.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00012_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00012_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00013.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00013_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00013_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00014.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00014_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00014_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00015.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00015_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00015_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00016.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00016_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00016_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00017.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00017_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00017_source.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00018.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00020.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00021.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00022.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00023.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00024.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00025.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00026.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00027.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00028.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00029.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00030.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00031.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00032.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00033.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00034.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00034.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00035.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00035.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00036.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00036.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00037.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00038.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00038.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00039.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00039.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00040.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00040.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00041.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00042.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00043.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00044.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00046.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00046.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00047.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00048.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00048.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00049.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00050.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00050.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00051.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00052.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00053.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00053.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00054.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00054.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00055.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00056.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00056.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00057.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00057.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00058.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00058.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00059.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00060.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00061.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00061.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00062.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00063.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00064.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00065.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00066.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00067.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00068.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00069.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00069.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00070.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00071.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00072.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00073.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00074.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00075.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00076.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00077.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00078.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00079.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00080.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00081.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00082.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00082.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00083.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00084.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00084.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00085.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00086.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00087.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00088.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00089.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00090.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00091.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00092.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00093.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00093.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00094.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00095.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00096.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00097.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00098.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00099.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00100.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00101.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00101.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00102.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00103.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00104.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00104.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00105.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00106.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00107.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00108.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00108.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00109.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00109.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00110.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00111.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00112.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00113.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00114.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00115.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00116.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00117.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00118.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00118.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00119.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00119.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00120.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00121.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00121.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00122.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00122.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00123.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00124.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00124.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00125.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00125.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00126.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00126.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00127.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00127.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00128.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00129.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00129.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00130.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00131.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00132.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00133.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00134.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00134.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00139.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00140.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00141.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00142.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00142.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00143.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00143.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00144.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00144.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00145.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00145.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00146.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00147.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00148.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00149.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00150.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00151.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00152.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00153.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00154.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00155.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00156.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00157.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00158.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00159.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00160.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00161.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00162.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00163.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00164.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00164.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00165.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00166.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00167.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00168.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00169.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00170.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00171.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00172.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00173.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00174.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00175.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00176.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00177.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00178.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00179.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00179.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00180.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00181.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00181.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00182.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00182.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00183.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00183.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00184.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00184.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00185.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00185.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00186.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00186.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00187.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00187.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00188.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00188.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00189.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00189.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00190.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00191.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00191.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00192.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00193.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00193.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00194.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00194.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00195.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00195.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00196.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00197.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00197.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00198.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00199.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00199.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00200.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00201.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00202.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00203.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00204.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00205.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00206.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00206.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00207.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00208.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00209.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00210.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00211.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00212.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00213.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00214.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00215.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00215.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00216.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00217.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00218.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00219.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00219.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00220.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00221.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00222.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00223.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00224.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00225.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00226.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00226.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00227.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00227.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00228.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00228.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00229.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00229.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00230.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00231.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00232.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00232.html -------------------------------------------------------------------------------- /external/glm/doc/api/a00233.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/a00233.html -------------------------------------------------------------------------------- /external/glm/doc/api/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/arrowdown.png -------------------------------------------------------------------------------- /external/glm/doc/api/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/arrowright.png -------------------------------------------------------------------------------- /external/glm/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/bc_s.png -------------------------------------------------------------------------------- /external/glm/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/bdwn.png -------------------------------------------------------------------------------- /external/glm/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/closed.png -------------------------------------------------------------------------------- /external/glm/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/doc.png -------------------------------------------------------------------------------- /external/glm/doc/api/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/doxygen.css -------------------------------------------------------------------------------- /external/glm/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/doxygen.png -------------------------------------------------------------------------------- /external/glm/doc/api/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/dynsections.js -------------------------------------------------------------------------------- /external/glm/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/files.html -------------------------------------------------------------------------------- /external/glm/doc/api/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/folderclosed.png -------------------------------------------------------------------------------- /external/glm/doc/api/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/folderopen.png -------------------------------------------------------------------------------- /external/glm/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/index.html -------------------------------------------------------------------------------- /external/glm/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/jquery.js -------------------------------------------------------------------------------- /external/glm/doc/api/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/logo-mini.png -------------------------------------------------------------------------------- /external/glm/doc/api/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/man.doxy -------------------------------------------------------------------------------- /external/glm/doc/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/modules.html -------------------------------------------------------------------------------- /external/glm/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/nav_f.png -------------------------------------------------------------------------------- /external/glm/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/nav_g.png -------------------------------------------------------------------------------- /external/glm/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/nav_h.png -------------------------------------------------------------------------------- /external/glm/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/open.png -------------------------------------------------------------------------------- /external/glm/doc/api/pages.doxy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_0.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_0.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_1.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_1.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_10.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_11.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_12.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_13.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_14.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_15.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_16.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_17.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_2.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_2.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_3.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_3.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_4.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_4.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_5.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_5.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_6.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_6.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_7.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_7.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_8.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_8.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_9.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_9.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_a.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_a.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_b.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_b.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_c.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_c.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_d.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_d.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_e.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_e.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_f.html -------------------------------------------------------------------------------- /external/glm/doc/api/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/all_f.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/close.png -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_0.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_1.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_2.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_3.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_4.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_5.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_6.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_7.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_8.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_9.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_a.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_b.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_c.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_d.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_e.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/files_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/files_f.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/pages_0.js -------------------------------------------------------------------------------- /external/glm/doc/api/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/search.css -------------------------------------------------------------------------------- /external/glm/doc/api/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/search/search.js -------------------------------------------------------------------------------- /external/glm/doc/api/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/splitbar.png -------------------------------------------------------------------------------- /external/glm/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/sync_off.png -------------------------------------------------------------------------------- /external/glm/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/sync_on.png -------------------------------------------------------------------------------- /external/glm/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/tab_a.png -------------------------------------------------------------------------------- /external/glm/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/tab_b.png -------------------------------------------------------------------------------- /external/glm/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/tab_h.png -------------------------------------------------------------------------------- /external/glm/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/tab_s.png -------------------------------------------------------------------------------- /external/glm/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/api/tabs.css -------------------------------------------------------------------------------- /external/glm/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/man.doxy -------------------------------------------------------------------------------- /external/glm/doc/manual/frontpage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/manual/frontpage1.png -------------------------------------------------------------------------------- /external/glm/doc/manual/frontpage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/manual/frontpage2.png -------------------------------------------------------------------------------- /external/glm/doc/manual/g-truc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/manual/g-truc.png -------------------------------------------------------------------------------- /external/glm/doc/manual/logo-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/manual/logo-mini.png -------------------------------------------------------------------------------- /external/glm/doc/theme/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/theme/doxygen.css -------------------------------------------------------------------------------- /external/glm/doc/theme/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/doc/theme/tabs.css -------------------------------------------------------------------------------- /external/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/common.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /external/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /external/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /external/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/ext.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/ext/vec1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vec1.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /external/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/glm.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /external/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /external/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/packing.hpp -------------------------------------------------------------------------------- /external/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/common.h -------------------------------------------------------------------------------- /external/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /external/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /external/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /external/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /external/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /external/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /external/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /external/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /external/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /external/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/manual.md -------------------------------------------------------------------------------- /external/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/readme.md -------------------------------------------------------------------------------- /external/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /external/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/ext/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/ext/ext_vec1.cpp -------------------------------------------------------------------------------- /external/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /external/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_bitfield.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_type_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_type_ptr.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /external/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_log_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_log_base.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_texture.cpp -------------------------------------------------------------------------------- /external/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /external/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/util/autoexp.txt -------------------------------------------------------------------------------- /external/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /external/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/util/glm.natvis -------------------------------------------------------------------------------- /external/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/glm/util/usertype.dat -------------------------------------------------------------------------------- /external/imgui/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/.travis.yml -------------------------------------------------------------------------------- /external/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/LICENSE.txt -------------------------------------------------------------------------------- /external/imgui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/README.md -------------------------------------------------------------------------------- /external/imgui/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/TODO.txt -------------------------------------------------------------------------------- /external/imgui/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/examples/.gitignore -------------------------------------------------------------------------------- /external/imgui/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/examples/README.txt -------------------------------------------------------------------------------- /external/imgui/extra_fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/extra_fonts/README.txt -------------------------------------------------------------------------------- /external/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imconfig.h -------------------------------------------------------------------------------- /external/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imgui.cpp -------------------------------------------------------------------------------- /external/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imgui.h -------------------------------------------------------------------------------- /external/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /external/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/imgui_internal.h -------------------------------------------------------------------------------- /external/imgui/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/stb_rect_pack.h -------------------------------------------------------------------------------- /external/imgui/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/stb_textedit.h -------------------------------------------------------------------------------- /external/imgui/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/imgui/stb_truetype.h -------------------------------------------------------------------------------- /external/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/stb_image.h -------------------------------------------------------------------------------- /external/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/stb_image_write.h -------------------------------------------------------------------------------- /external/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/external/tiny_obj_loader.h -------------------------------------------------------------------------------- /images/FinalLightingModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/FinalLightingModel.png -------------------------------------------------------------------------------- /images/READMEImages/CheapSampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/CheapSampling.png -------------------------------------------------------------------------------- /images/READMEImages/CloudErosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/CloudErosion.png -------------------------------------------------------------------------------- /images/READMEImages/ConeSampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/ConeSampling.png -------------------------------------------------------------------------------- /images/READMEImages/InOutOfCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/InOutOfCloud.png -------------------------------------------------------------------------------- /images/READMEImages/beer01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/beer01.PNG -------------------------------------------------------------------------------- /images/READMEImages/beer02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/beer02.PNG -------------------------------------------------------------------------------- /images/READMEImages/blue-sky.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/blue-sky.PNG -------------------------------------------------------------------------------- /images/READMEImages/cloud01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/cloud01.PNG -------------------------------------------------------------------------------- /images/READMEImages/cloud02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/cloud02.PNG -------------------------------------------------------------------------------- /images/READMEImages/clouds03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/clouds03.PNG -------------------------------------------------------------------------------- /images/READMEImages/clouds04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/clouds04.PNG -------------------------------------------------------------------------------- /images/READMEImages/clouds05.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/clouds05.PNG -------------------------------------------------------------------------------- /images/READMEImages/cmakegui2-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/cmakegui2-1.PNG -------------------------------------------------------------------------------- /images/READMEImages/cmakegui2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/cmakegui2.PNG -------------------------------------------------------------------------------- /images/READMEImages/curlNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/curlNoise.png -------------------------------------------------------------------------------- /images/READMEImages/dusk-ish.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/dusk-ish.PNG -------------------------------------------------------------------------------- /images/READMEImages/finalRender.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/finalRender.PNG -------------------------------------------------------------------------------- /images/READMEImages/godRayChart.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/godRayChart.PNG -------------------------------------------------------------------------------- /images/READMEImages/godRayMask.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/godRayMask.PNG -------------------------------------------------------------------------------- /images/READMEImages/hg01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/hg01.PNG -------------------------------------------------------------------------------- /images/READMEImages/hg02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/hg02.PNG -------------------------------------------------------------------------------- /images/READMEImages/hg03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/hg03.PNG -------------------------------------------------------------------------------- /images/READMEImages/hg04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/hg04.PNG -------------------------------------------------------------------------------- /images/READMEImages/horizonLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/horizonLine.png -------------------------------------------------------------------------------- /images/READMEImages/in01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/in01.PNG -------------------------------------------------------------------------------- /images/READMEImages/in02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/in02.PNG -------------------------------------------------------------------------------- /images/READMEImages/in03.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/in03.PNG -------------------------------------------------------------------------------- /images/READMEImages/in04.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/in04.PNG -------------------------------------------------------------------------------- /images/READMEImages/layerLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/layerLayout.png -------------------------------------------------------------------------------- /images/READMEImages/lightingProbs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/lightingProbs.PNG -------------------------------------------------------------------------------- /images/READMEImages/meg01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/meg01.gif -------------------------------------------------------------------------------- /images/READMEImages/onlyGodRays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/onlyGodRays.png -------------------------------------------------------------------------------- /images/READMEImages/pipelinelayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/pipelinelayout.png -------------------------------------------------------------------------------- /images/READMEImages/raymarching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/raymarching.png -------------------------------------------------------------------------------- /images/READMEImages/sobeltest.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/READMEImages/sobeltest.PNG -------------------------------------------------------------------------------- /images/beerslaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/beerslaw.png -------------------------------------------------------------------------------- /images/beerslawAndHG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/beerslawAndHG.png -------------------------------------------------------------------------------- /images/beerspowderlaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/beerspowderlaw.png -------------------------------------------------------------------------------- /images/cloud modelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/cloud modelling.png -------------------------------------------------------------------------------- /images/erodeclouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/erodeclouds.png -------------------------------------------------------------------------------- /images/imguiExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/imguiExample.png -------------------------------------------------------------------------------- /images/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/images/note.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/CloudScapes/BufferUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/BufferUtils.cpp -------------------------------------------------------------------------------- /src/CloudScapes/BufferUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/BufferUtils.h -------------------------------------------------------------------------------- /src/CloudScapes/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Commands.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Commands.h -------------------------------------------------------------------------------- /src/CloudScapes/FormatUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/FormatUtils.h -------------------------------------------------------------------------------- /src/CloudScapes/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Image.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Image.h -------------------------------------------------------------------------------- /src/CloudScapes/ImageLoadingUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/ImageLoadingUtility.h -------------------------------------------------------------------------------- /src/CloudScapes/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Model.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Model.h -------------------------------------------------------------------------------- /src/CloudScapes/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Renderer.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Renderer.h -------------------------------------------------------------------------------- /src/CloudScapes/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Scene.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Scene.h -------------------------------------------------------------------------------- /src/CloudScapes/ShaderModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/ShaderModule.cpp -------------------------------------------------------------------------------- /src/CloudScapes/ShaderModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/ShaderModule.h -------------------------------------------------------------------------------- /src/CloudScapes/Sky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Sky.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Sky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Sky.h -------------------------------------------------------------------------------- /src/CloudScapes/SwapChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/SwapChain.cpp -------------------------------------------------------------------------------- /src/CloudScapes/SwapChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/SwapChain.h -------------------------------------------------------------------------------- /src/CloudScapes/Texture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Texture2D.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Texture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Texture2D.h -------------------------------------------------------------------------------- /src/CloudScapes/Texture3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Texture3D.cpp -------------------------------------------------------------------------------- /src/CloudScapes/Texture3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Texture3D.h -------------------------------------------------------------------------------- /src/CloudScapes/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/Vertex.h -------------------------------------------------------------------------------- /src/CloudScapes/VulkanDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/VulkanDevice.cpp -------------------------------------------------------------------------------- /src/CloudScapes/VulkanDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/VulkanDevice.h -------------------------------------------------------------------------------- /src/CloudScapes/VulkanInitializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/VulkanInitializers.h -------------------------------------------------------------------------------- /src/CloudScapes/VulkanInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/VulkanInstance.cpp -------------------------------------------------------------------------------- /src/CloudScapes/VulkanInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/VulkanInstance.h -------------------------------------------------------------------------------- /src/CloudScapes/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/camera.cpp -------------------------------------------------------------------------------- /src/CloudScapes/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/camera.h -------------------------------------------------------------------------------- /src/CloudScapes/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/forward.h -------------------------------------------------------------------------------- /src/CloudScapes/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/main.cpp -------------------------------------------------------------------------------- /src/CloudScapes/models/chaletModel.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/models/chaletModel.obj -------------------------------------------------------------------------------- /src/CloudScapes/models/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/models/teapot.obj -------------------------------------------------------------------------------- /src/CloudScapes/models/thinCube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/models/thinCube.obj -------------------------------------------------------------------------------- /src/CloudScapes/textures/chalet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/textures/chalet.jpg -------------------------------------------------------------------------------- /src/CloudScapes/textures/statue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/textures/statue.jpg -------------------------------------------------------------------------------- /src/CloudScapes/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/window.cpp -------------------------------------------------------------------------------- /src/CloudScapes/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmanSachan1/Meteoros/HEAD/src/CloudScapes/window.h --------------------------------------------------------------------------------