├── .DS_Store ├── CMake └── MacOSXBundleInfo.plist.in ├── CMakeLists.txt ├── GL ├── OSX_GL.h ├── gl3w.h └── glcorearb.h ├── GLFW ├── glfw3.h └── glfw3native.h ├── LICENSE ├── README.md ├── awesomeface.png ├── container.jpg ├── deps ├── KHR │ └── khrplatform.h ├── getopt.c ├── getopt.h ├── glad.c ├── glad │ └── glad.h ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── precision.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 │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── functions.hpp │ │ ├── functions.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_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 │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.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_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 │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── 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 ├── linmath.h ├── mingw │ ├── _mingw_dxhelper.h │ ├── dinput.h │ └── xinput.h ├── tinycthread.c ├── tinycthread.h └── vulkan │ ├── vk_platform.h │ └── vulkan.h ├── gl3w.c ├── glfw-3.2.1 ├── .appveyor.yml ├── .github │ └── CONTRIBUTING.md ├── .travis.yml ├── CMake │ ├── MacOSXBundleInfo.plist.in │ ├── amd64-mingw32msvc.cmake │ ├── i586-mingw32msvc.cmake │ ├── i686-pc-mingw32.cmake │ ├── i686-w64-mingw32.cmake │ ├── modules │ │ ├── FindMir.cmake │ │ ├── FindVulkan.cmake │ │ ├── FindWaylandProtocols.cmake │ │ └── FindXKBCommon.cmake │ └── x86_64-w64-mingw32.cmake ├── CMakeLists.txt ├── COPYING.txt ├── README.md ├── build │ └── .DS_Store ├── 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 │ ├── tinycthread.c │ ├── tinycthread.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 │ ├── html │ │ ├── annotated.html │ │ ├── arrowdown.png │ │ ├── arrowright.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── bug.html │ │ ├── build_8dox.html │ │ ├── build_guide.html │ │ ├── classes.html │ │ ├── closed.png │ │ ├── compat_8dox.html │ │ ├── compat_guide.html │ │ ├── compile_8dox.html │ │ ├── compile_guide.html │ │ ├── context_8dox.html │ │ ├── context_guide.html │ │ ├── dir_1f12d41534b9d9c99a183e145b58d6f3.html │ │ ├── dir_351f617146de9499414a6c099ebbe0ca.html │ │ ├── dir_4bcf8e981abe5adb811ce4f57d70c9af.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── extra.css │ │ ├── files.html │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── functions.html │ │ ├── functions_vars.html │ │ ├── glfw3_8h.html │ │ ├── glfw3_8h_source.html │ │ ├── glfw3native_8h.html │ │ ├── glfw3native_8h_source.html │ │ ├── globals.html │ │ ├── globals_b.html │ │ ├── globals_c.html │ │ ├── globals_d.html │ │ ├── globals_defs.html │ │ ├── globals_defs_b.html │ │ ├── globals_defs_c.html │ │ ├── globals_defs_d.html │ │ ├── globals_defs_e.html │ │ ├── globals_defs_f.html │ │ ├── globals_defs_g.html │ │ ├── globals_defs_h.html │ │ ├── globals_defs_i.html │ │ ├── globals_defs_j.html │ │ ├── globals_defs_k.html │ │ ├── globals_defs_l.html │ │ ├── globals_defs_m.html │ │ ├── globals_defs_n.html │ │ ├── globals_defs_o.html │ │ ├── globals_defs_p.html │ │ ├── globals_defs_r.html │ │ ├── globals_defs_s.html │ │ ├── globals_defs_t.html │ │ ├── globals_defs_v.html │ │ ├── globals_e.html │ │ ├── globals_f.html │ │ ├── globals_func.html │ │ ├── globals_g.html │ │ ├── globals_h.html │ │ ├── globals_i.html │ │ ├── globals_j.html │ │ ├── globals_k.html │ │ ├── globals_l.html │ │ ├── globals_m.html │ │ ├── globals_n.html │ │ ├── globals_o.html │ │ ├── globals_p.html │ │ ├── globals_r.html │ │ ├── globals_s.html │ │ ├── globals_t.html │ │ ├── globals_type.html │ │ ├── globals_v.html │ │ ├── globals_w.html │ │ ├── group__buttons.html │ │ ├── group__context.html │ │ ├── group__errors.html │ │ ├── group__init.html │ │ ├── group__input.html │ │ ├── group__joysticks.html │ │ ├── group__keys.html │ │ ├── group__mods.html │ │ ├── group__monitor.html │ │ ├── group__native.html │ │ ├── group__shapes.html │ │ ├── group__vulkan.html │ │ ├── group__window.html │ │ ├── index.html │ │ ├── input_8dox.html │ │ ├── input_guide.html │ │ ├── intro_8dox.html │ │ ├── intro_guide.html │ │ ├── jquery.js │ │ ├── main_8dox.html │ │ ├── modules.html │ │ ├── monitor_8dox.html │ │ ├── monitor_guide.html │ │ ├── moving_8dox.html │ │ ├── moving_guide.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── news.html │ │ ├── news_8dox.html │ │ ├── open.png │ │ ├── pages.html │ │ ├── quick_8dox.html │ │ ├── quick_guide.html │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.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 │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── close.png │ │ │ ├── defines_0.html │ │ │ ├── defines_0.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.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 │ │ │ ├── functions_0.html │ │ │ ├── functions_0.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 │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── pages_1.html │ │ │ ├── pages_1.js │ │ │ ├── pages_2.html │ │ │ ├── pages_2.js │ │ │ ├── pages_3.html │ │ │ ├── pages_3.js │ │ │ ├── pages_4.html │ │ │ ├── pages_4.js │ │ │ ├── pages_5.html │ │ │ ├── pages_5.js │ │ │ ├── pages_6.html │ │ │ ├── pages_6.js │ │ │ ├── pages_7.html │ │ │ ├── pages_7.js │ │ │ ├── pages_8.html │ │ │ ├── pages_8.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── typedefs_0.html │ │ │ ├── typedefs_0.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ └── variables_6.js │ │ ├── spaces.svg │ │ ├── splitbar.png │ │ ├── structGLFWgammaramp.html │ │ ├── structGLFWimage.html │ │ ├── structGLFWvidmode.html │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ ├── tabs.css │ │ ├── vulkan_8dox.html │ │ ├── vulkan_guide.html │ │ ├── window_8dox.html │ │ └── window_guide.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 │ ├── 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 │ ├── mir_init.c │ ├── mir_monitor.c │ ├── mir_platform.h │ ├── mir_window.c │ ├── monitor.c │ ├── nsgl_context.h │ ├── nsgl_context.m │ ├── posix_time.c │ ├── posix_time.h │ ├── posix_tls.c │ ├── posix_tls.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_time.c │ ├── win32_tls.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 │ ├── joysticks.c │ ├── monitors.c │ ├── msaa.c │ ├── reopen.c │ ├── sharing.c │ ├── tearing.c │ ├── threads.c │ ├── timeout.c │ ├── title.c │ ├── vulkan.c │ └── windows.c ├── glfw.icns ├── glm-0.9.8.4 ├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── cmake │ ├── glm.pc.in │ ├── glmBuildConfig.cmake.in │ └── glmConfig.cmake.in ├── copying.txt ├── 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.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.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_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_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_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 │ │ ├── a00135.html │ │ ├── a00135_source.html │ │ ├── a00136.html │ │ ├── a00136_source.html │ │ ├── a00137.html │ │ ├── a00137_source.html │ │ ├── a00138.html │ │ ├── a00138_source.html │ │ ├── a00139.html │ │ ├── a00139_source.html │ │ ├── a00140.html │ │ ├── a00140_source.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 │ │ ├── a00234.html │ │ ├── a00235.html │ │ ├── a00236.html │ │ ├── a00237.html │ │ ├── a00238.html │ │ ├── arrowdown.png │ │ ├── arrowright.png │ │ ├── bc_s.png │ │ ├── bdwn.png │ │ ├── closed.png │ │ ├── dir_1f76e953200861345293ade84ac7fb6c.html │ │ ├── dir_275089585c7fc1b5fd5d7d42c69cb1da.html │ │ ├── dir_577c788b67d63fb3b3b5752bd495d0f2.html │ │ ├── dir_5ce58d942b2d0776e17a9a58abc01e04.html │ │ ├── dir_7b98f88bffbed4b390b5f8f520d9c08e.html │ │ ├── dir_8d176b5b7dd0ae42ea6876078f2bde49.html │ │ ├── dir_9440d7c11b99dcd7e5d369c7cf9802fe.html │ │ ├── dir_e29b03b892e0e25920d021a614d4db9b.html │ │ ├── dir_e529a619cfdec1fa4c331fb042fd332f.html │ │ ├── doc.png │ │ ├── doxygen.css │ │ ├── doxygen.png │ │ ├── dynsections.js │ │ ├── files.html │ │ ├── folderclosed.png │ │ ├── folderopen.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── logo.png │ │ ├── modules.html │ │ ├── nav_f.png │ │ ├── nav_g.png │ │ ├── nav_h.png │ │ ├── open.png │ │ ├── splitbar.png │ │ ├── sync_off.png │ │ ├── sync_on.png │ │ ├── tab_a.png │ │ ├── tab_b.png │ │ ├── tab_h.png │ │ ├── tab_s.png │ │ └── tabs.css │ ├── glm.docx │ ├── glm.pdf │ ├── logo.png │ ├── man.doxy │ ├── pages.doxy │ └── theme │ │ ├── doxygen.css │ │ └── tabs.css ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_common_simd.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_exponential_simd.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_geometric_simd.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_integer_simd.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_matrix_simd.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_packing_simd.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_trigonometric_simd.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── func_vector_relational_simd.inl │ │ ├── glm.cpp │ │ ├── precision.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 │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_encoding.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── functions.hpp │ │ ├── functions.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_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 │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── float_notmalize.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_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 │ │ ├── simd_mat4.hpp │ │ ├── simd_mat4.inl │ │ ├── simd_quat.hpp │ │ ├── simd_quat.inl │ │ ├── simd_vec4.hpp │ │ ├── simd_vec4.inl │ │ ├── spline.hpp │ │ ├── spline.inl │ │ ├── std_based_type.hpp │ │ ├── std_based_type.inl │ │ ├── string_cast.hpp │ │ ├── string_cast.inl │ │ ├── transform.hpp │ │ ├── transform.inl │ │ ├── transform2.hpp │ │ ├── transform2.inl │ │ ├── type_aligned.hpp │ │ ├── type_aligned.inl │ │ ├── type_trait.hpp │ │ ├── type_trait.inl │ │ ├── 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 ├── 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_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 │ ├── external │ │ └── gli │ │ │ ├── CMakeLists.txt │ │ │ ├── core │ │ │ ├── dummy.cpp │ │ │ ├── generate_mipmaps.hpp │ │ │ ├── generate_mipmaps.inl │ │ │ ├── image2d.hpp │ │ │ ├── image2d.inl │ │ │ ├── operation.hpp │ │ │ ├── operation.inl │ │ │ ├── operator.hpp │ │ │ ├── operator.inl │ │ │ ├── shared_array.hpp │ │ │ ├── shared_array.inl │ │ │ ├── shared_ptr.hpp │ │ │ ├── shared_ptr.inl │ │ │ ├── size.hpp │ │ │ ├── size.inl │ │ │ ├── texture2d.hpp │ │ │ ├── texture2d.inl │ │ │ ├── texture2d_array.hpp │ │ │ ├── texture2d_array.inl │ │ │ ├── texture_cube.hpp │ │ │ ├── texture_cube.inl │ │ │ ├── texture_cube_array.hpp │ │ │ └── texture_cube_array.inl │ │ │ ├── gli.hpp │ │ │ └── gtx │ │ │ ├── compression.hpp │ │ │ ├── compression.inl │ │ │ ├── fetch.hpp │ │ │ ├── fetch.inl │ │ │ ├── gl_texture2d.hpp │ │ │ ├── gl_texture2d.inl │ │ │ ├── gradient.hpp │ │ │ ├── gradient.inl │ │ │ ├── loader.hpp │ │ │ ├── loader.inl │ │ │ ├── loader_dds10.hpp │ │ │ ├── loader_dds10.inl │ │ │ ├── loader_dds9.hpp │ │ │ ├── loader_dds9.inl │ │ │ ├── loader_tga.hpp │ │ │ ├── loader_tga.inl │ │ │ ├── wavelet.hpp │ │ │ └── wavelet.inl │ ├── glm.cppcheck │ ├── gtc │ │ ├── CMakeLists.txt │ │ ├── gtc_bitfield.cpp │ │ ├── gtc_color_space.cpp │ │ ├── gtc_constants.cpp │ │ ├── gtc_epsilon.cpp │ │ ├── gtc_functions.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_associated_min_max.cpp │ │ ├── gtx_closest_point.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_fast_exponential.cpp │ │ ├── gtx_fast_square_root.cpp │ │ ├── gtx_fast_trigonometry.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_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_type_aligned.cpp │ │ ├── gtx_type_trait.cpp │ │ ├── gtx_vector_angle.cpp │ │ ├── gtx_vector_query.cpp │ │ └── gtx_wrap.cpp └── util │ ├── autoexp.txt │ ├── autoexp.vc2010.dat │ ├── glm.natvis │ └── usertype.dat ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui.ini ├── imgui_draw.cpp ├── imgui_impl_glfw_gl3.cpp ├── imgui_impl_glfw_gl3.h ├── imgui_internal.h ├── imgui_setup.h ├── libglfw3_LINUX.a ├── libglfw3_OSX.a ├── main.cpp ├── shader.fs ├── shader.vs ├── stb_image.h ├── stb_rect_pack.h ├── stb_textedit.h ├── stb_truetype.h └── wall.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/.DS_Store -------------------------------------------------------------------------------- /CMake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/CMake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GL/OSX_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/GL/OSX_GL.h -------------------------------------------------------------------------------- /GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/GL/gl3w.h -------------------------------------------------------------------------------- /GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/GL/glcorearb.h -------------------------------------------------------------------------------- /GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/GLFW/glfw3.h -------------------------------------------------------------------------------- /GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/GLFW/glfw3native.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/README.md -------------------------------------------------------------------------------- /awesomeface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/awesomeface.png -------------------------------------------------------------------------------- /container.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/container.jpg -------------------------------------------------------------------------------- /deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/getopt.c -------------------------------------------------------------------------------- /deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/getopt.h -------------------------------------------------------------------------------- /deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glad.c -------------------------------------------------------------------------------- /deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glad/glad.h -------------------------------------------------------------------------------- /deps/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/common.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_features.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /deps/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /deps/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /deps/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_common.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /deps/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /deps/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/glm.cpp -------------------------------------------------------------------------------- /deps/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/precision.hpp -------------------------------------------------------------------------------- /deps/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/setup.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_half.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /deps/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /deps/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /deps/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/exponential.hpp -------------------------------------------------------------------------------- /deps/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/ext.hpp -------------------------------------------------------------------------------- /deps/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/fwd.hpp -------------------------------------------------------------------------------- /deps/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/geometric.hpp -------------------------------------------------------------------------------- /deps/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/glm.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /deps/glm/gtc/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/color_encoding.inl -------------------------------------------------------------------------------- /deps/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /deps/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/constants.inl -------------------------------------------------------------------------------- /deps/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /deps/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/functions.inl -------------------------------------------------------------------------------- /deps/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/integer.inl -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /deps/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/noise.inl -------------------------------------------------------------------------------- /deps/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/packing.inl -------------------------------------------------------------------------------- /deps/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /deps/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/quaternion_simd.inl -------------------------------------------------------------------------------- /deps/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/random.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/random.inl -------------------------------------------------------------------------------- /deps/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /deps/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/round.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/round.inl -------------------------------------------------------------------------------- /deps/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /deps/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /deps/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /deps/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /deps/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /deps/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /deps/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/bit.inl -------------------------------------------------------------------------------- /deps/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /deps/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /deps/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /deps/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/common.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/common.inl -------------------------------------------------------------------------------- /deps/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /deps/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /deps/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /deps/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /deps/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/extend.inl -------------------------------------------------------------------------------- /deps/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /deps/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /deps/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /deps/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /deps/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /deps/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /deps/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/hash.inl -------------------------------------------------------------------------------- /deps/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/integer.inl -------------------------------------------------------------------------------- /deps/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /deps/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/io.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/io.inl -------------------------------------------------------------------------------- /deps/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /deps/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /deps/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/norm.inl -------------------------------------------------------------------------------- /deps/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/normal.inl -------------------------------------------------------------------------------- /deps/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /deps/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /deps/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /deps/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /deps/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /deps/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /deps/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/projection.inl -------------------------------------------------------------------------------- /deps/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /deps/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/range.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /deps/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /deps/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /deps/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /deps/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /deps/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /deps/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/spline.inl -------------------------------------------------------------------------------- /deps/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /deps/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /deps/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/transform.inl -------------------------------------------------------------------------------- /deps/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /deps/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/type_aligned.inl -------------------------------------------------------------------------------- /deps/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /deps/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /deps/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /deps/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /deps/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/integer.hpp -------------------------------------------------------------------------------- /deps/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/matrix.hpp -------------------------------------------------------------------------------- /deps/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/packing.hpp -------------------------------------------------------------------------------- /deps/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/common.h -------------------------------------------------------------------------------- /deps/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/exponential.h -------------------------------------------------------------------------------- /deps/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/geometric.h -------------------------------------------------------------------------------- /deps/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/integer.h -------------------------------------------------------------------------------- /deps/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/matrix.h -------------------------------------------------------------------------------- /deps/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/packing.h -------------------------------------------------------------------------------- /deps/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/platform.h -------------------------------------------------------------------------------- /deps/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /deps/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /deps/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/trigonometric.hpp -------------------------------------------------------------------------------- /deps/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/vec2.hpp -------------------------------------------------------------------------------- /deps/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/vec3.hpp -------------------------------------------------------------------------------- /deps/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/vec4.hpp -------------------------------------------------------------------------------- /deps/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/glm/vector_relational.hpp -------------------------------------------------------------------------------- /deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/linmath.h -------------------------------------------------------------------------------- /deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/mingw/dinput.h -------------------------------------------------------------------------------- /deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/mingw/xinput.h -------------------------------------------------------------------------------- /deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/tinycthread.c -------------------------------------------------------------------------------- /deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/tinycthread.h -------------------------------------------------------------------------------- /deps/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/vulkan/vk_platform.h -------------------------------------------------------------------------------- /deps/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/deps/vulkan/vulkan.h -------------------------------------------------------------------------------- /gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/gl3w.c -------------------------------------------------------------------------------- /glfw-3.2.1/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/.appveyor.yml -------------------------------------------------------------------------------- /glfw-3.2.1/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /glfw-3.2.1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/.travis.yml -------------------------------------------------------------------------------- /glfw-3.2.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/CMakeLists.txt -------------------------------------------------------------------------------- /glfw-3.2.1/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/COPYING.txt -------------------------------------------------------------------------------- /glfw-3.2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/README.md -------------------------------------------------------------------------------- /glfw-3.2.1/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/build/.DS_Store -------------------------------------------------------------------------------- /glfw-3.2.1/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /glfw-3.2.1/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/getopt.c -------------------------------------------------------------------------------- /glfw-3.2.1/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/getopt.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/glad.c -------------------------------------------------------------------------------- /glfw-3.2.1/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/glad/glad.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/linmath.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/mingw/dinput.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/mingw/xinput.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/tinycthread.c -------------------------------------------------------------------------------- /glfw-3.2.1/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/tinycthread.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/vulkan/vk_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/deps/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/deps/vulkan/vulkan.h -------------------------------------------------------------------------------- /glfw-3.2.1/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/CMakeLists.txt -------------------------------------------------------------------------------- /glfw-3.2.1/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/Doxyfile.in -------------------------------------------------------------------------------- /glfw-3.2.1/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /glfw-3.2.1/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/build.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/compat.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/compile.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/context.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/extra.css -------------------------------------------------------------------------------- /glfw-3.2.1/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/extra.less -------------------------------------------------------------------------------- /glfw-3.2.1/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/footer.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/header.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/annotated.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/arrowdown.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/arrowright.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/bc_s.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/bdwn.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/bug.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/build_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/build_8dox.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/build_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/build_guide.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/classes.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/closed.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/compat_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/compat_8dox.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/doc.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/doxygen.css -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/doxygen.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/dynsections.js -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/extra.css -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/files.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/folderclosed.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/folderopen.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/functions.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/glfw3_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/glfw3_8h.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/globals.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/globals_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/globals_b.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/globals_c.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/globals_d.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/globals_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/globals_e.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/index.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/jquery.js -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/modules.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/nav_f.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/nav_g.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/nav_h.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/news.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/open.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/pages.html -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/spaces.svg -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/splitbar.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/sync_off.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/sync_on.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/tab_a.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/tab_b.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/tab_h.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/tab_s.png -------------------------------------------------------------------------------- /glfw-3.2.1/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/html/tabs.css -------------------------------------------------------------------------------- /glfw-3.2.1/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/input.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/internal.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/intro.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/main.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/monitor.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/moving.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/news.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/quick.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/spaces.svg -------------------------------------------------------------------------------- /glfw-3.2.1/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/vulkan.dox -------------------------------------------------------------------------------- /glfw-3.2.1/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/docs/window.dox -------------------------------------------------------------------------------- /glfw-3.2.1/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/CMakeLists.txt -------------------------------------------------------------------------------- /glfw-3.2.1/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/boing.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/gears.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/glfw.icns -------------------------------------------------------------------------------- /glfw-3.2.1/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/glfw.ico -------------------------------------------------------------------------------- /glfw-3.2.1/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/glfw.rc -------------------------------------------------------------------------------- /glfw-3.2.1/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/heightmap.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/particles.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/simple.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/splitview.c -------------------------------------------------------------------------------- /glfw-3.2.1/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/examples/wave.c -------------------------------------------------------------------------------- /glfw-3.2.1/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/CMakeLists.txt -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_init.m -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_joystick.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_joystick.m -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_monitor.m -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_time.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/cocoa_window.m -------------------------------------------------------------------------------- /glfw-3.2.1/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/context.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/egl_context.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/egl_context.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/glfw3.pc.in -------------------------------------------------------------------------------- /glfw-3.2.1/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /glfw-3.2.1/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/glfw_config.h.in -------------------------------------------------------------------------------- /glfw-3.2.1/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/glx_context.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/glx_context.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/init.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/input.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/internal.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/linux_joystick.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/linux_joystick.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/mir_init.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/mir_monitor.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/mir_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/mir_window.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/monitor.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/nsgl_context.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/nsgl_context.m -------------------------------------------------------------------------------- /glfw-3.2.1/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/posix_time.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/posix_time.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/posix_tls.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/posix_tls.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/vulkan.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wgl_context.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wgl_context.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_init.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_joystick.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_joystick.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_monitor.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_time.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_tls.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/win32_window.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/window.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wl_init.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wl_monitor.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wl_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/wl_window.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/x11_init.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/x11_monitor.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/x11_platform.h -------------------------------------------------------------------------------- /glfw-3.2.1/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/x11_window.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/xkb_unicode.c -------------------------------------------------------------------------------- /glfw-3.2.1/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/src/xkb_unicode.h -------------------------------------------------------------------------------- /glfw-3.2.1/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/CMakeLists.txt -------------------------------------------------------------------------------- /glfw-3.2.1/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/clipboard.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/cursor.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/empty.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/events.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/gamma.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/glfwinfo.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/icon.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/iconify.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/joysticks.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/monitors.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/msaa.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/reopen.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/sharing.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/tearing.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/threads.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/timeout.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/title.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/vulkan.c -------------------------------------------------------------------------------- /glfw-3.2.1/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw-3.2.1/tests/windows.c -------------------------------------------------------------------------------- /glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glfw.icns -------------------------------------------------------------------------------- /glm-0.9.8.4/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/.appveyor.yml -------------------------------------------------------------------------------- /glm-0.9.8.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/.gitignore -------------------------------------------------------------------------------- /glm-0.9.8.4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/.travis.yml -------------------------------------------------------------------------------- /glm-0.9.8.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/CMakeLists.txt -------------------------------------------------------------------------------- /glm-0.9.8.4/cmake/glm.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/cmake/glm.pc.in -------------------------------------------------------------------------------- /glm-0.9.8.4/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/copying.txt -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00001.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00002.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00003.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00004.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00005.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00006.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00007.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00008.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00009.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00010.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00011.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00012.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00013.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00014.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00015.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00016.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00017.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00018.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00019.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00020.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00021.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00022.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00023.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00024.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00025.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00026.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00027.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00028.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00029.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00030.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00030.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00031.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00031.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00032.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00032.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00033.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00033.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00034.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00034.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00035.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00035.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00036.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00036.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00037.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00037.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00038.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00038.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00039.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00039.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00040.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00040.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00041.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00041.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00042.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00042.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00043.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00043.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00044.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00044.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00045.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00045.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00046.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00046.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00047.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00047.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00048.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00048.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00049.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00049.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00051.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00051.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00052.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00052.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00053.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00053.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00054.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00054.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00055.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00055.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00056.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00056.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00057.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00057.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00059.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00059.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00060.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00060.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00061.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00061.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00062.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00062.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00063.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00063.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00064.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00064.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00065.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00065.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00066.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00066.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00067.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00067.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00068.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00068.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00069.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00069.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00070.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00070.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00071.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00071.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00072.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00072.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00073.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00073.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00074.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00074.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00075.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00075.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00076.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00076.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00077.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00077.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00078.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00078.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00079.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00079.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00080.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00080.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00081.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00081.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00083.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00083.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00084.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00084.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00085.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00085.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00086.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00086.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00087.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00087.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00088.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00088.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00089.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00089.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00090.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00090.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00091.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00091.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00092.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00092.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00093.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00093.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00094.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00094.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00095.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00095.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00096.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00096.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00097.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00097.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00098.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00098.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00099.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00099.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00100.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00100.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00101.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00101.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00102.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00102.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00103.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00103.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00104.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00104.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00105.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00105.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00106.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00106.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00107.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00107.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00108.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00108.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00109.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00109.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00110.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00110.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00111.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00111.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00112.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00112.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00113.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00113.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00114.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00114.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00115.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00115.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00116.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00116.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00117.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00117.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00118.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00118.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00119.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00119.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00120.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00121.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00121.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00122.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00122.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00123.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00123.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00124.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00124.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00125.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00125.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00126.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00126.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00127.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00127.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00128.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00128.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00129.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00129.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00130.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00131.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00132.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00133.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00134.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00134.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00135.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00135.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00136.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00136.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00137.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00137.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00138.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00138.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00139.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00139.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00140.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00146.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00146.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00147.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00147.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00148.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00148.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00149.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00149.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00150.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00151.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00151.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00152.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00153.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00154.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00155.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00155.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00156.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00156.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00157.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00157.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00158.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00158.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00159.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00159.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00160.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00161.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00162.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00163.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00164.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00164.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00165.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00165.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00166.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00166.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00167.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00167.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00168.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00168.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00169.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00169.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00170.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00171.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00172.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00173.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00173.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00174.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00174.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00175.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00175.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00176.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00176.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00177.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00177.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00178.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00178.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00179.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00179.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00180.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00180.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00181.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00181.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00182.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00182.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00183.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00183.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00184.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00184.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00185.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00185.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00186.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00186.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00187.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00187.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00188.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00188.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00189.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00189.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00190.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00190.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00191.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00191.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00192.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00192.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00193.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00193.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00194.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00194.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00195.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00195.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00196.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00196.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00197.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00197.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00198.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00198.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00199.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00199.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00200.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00201.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00202.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00203.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00204.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00204.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00205.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00205.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00206.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00206.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00207.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00207.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00208.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00208.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00209.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00209.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00210.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00211.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00212.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00213.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00214.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00215.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00215.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00216.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00216.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00217.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00217.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00218.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00218.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00219.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00219.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00220.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00221.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00222.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00223.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00224.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00224.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00225.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00225.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00226.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00226.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00227.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00227.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00228.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00228.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00229.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00229.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00230.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00230.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00231.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00231.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00232.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00232.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00233.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00233.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00234.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00234.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00235.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00235.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00236.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00236.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00237.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00237.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/a00238.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/a00238.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/arrowdown.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/arrowright.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/bc_s.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/bdwn.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/closed.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/doc.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/doxygen.css -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/doxygen.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/dynsections.js -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/files.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/folderopen.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/index.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/jquery.js -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/logo.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/modules.html -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/nav_f.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/nav_g.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/nav_h.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/open.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/splitbar.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/sync_off.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/sync_on.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/tab_a.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/tab_b.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/tab_h.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/tab_s.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/api/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/api/tabs.css -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/glm.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/glm.docx -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/glm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/glm.pdf -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/logo.png -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/man.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/man.doxy -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/pages.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/pages.doxy -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/theme/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/theme/doxygen.css -------------------------------------------------------------------------------- /glm-0.9.8.4/doc/theme/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/doc/theme/tabs.css -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/CMakeLists.txt -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/common.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/detail/glm.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/detail/setup.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/exponential.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/ext.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/fwd.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/geometric.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/glm.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/constants.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/functions.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/functions.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/integer.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/noise.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/packing.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/random.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/random.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/round.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/round.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtc/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtc/vec1.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/bit.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/common.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/common.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/extend.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/hash.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/integer.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/io.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/io.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/norm.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/normal.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/projection.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/range.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/spline.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/transform.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/integer.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat2x2.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat2x3.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat2x4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat3x2.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat3x3.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat3x4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat4x2.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat4x3.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/mat4x4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/matrix.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/packing.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/common.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/exponential.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/geometric.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/integer.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/matrix.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/packing.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/simd/platform.h -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/trigonometric.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/vec2.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/vec3.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/glm/vec4.hpp -------------------------------------------------------------------------------- /glm-0.9.8.4/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/readme.md -------------------------------------------------------------------------------- /glm-0.9.8.4/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/CMakeLists.txt -------------------------------------------------------------------------------- /glm-0.9.8.4/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /glm-0.9.8.4/test/external/gli/core/dummy.cpp: -------------------------------------------------------------------------------- 1 | int main() 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /glm-0.9.8.4/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/glm.cppcheck -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /glm-0.9.8.4/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/util/autoexp.txt -------------------------------------------------------------------------------- /glm-0.9.8.4/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/util/glm.natvis -------------------------------------------------------------------------------- /glm-0.9.8.4/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/glm-0.9.8.4/util/usertype.dat -------------------------------------------------------------------------------- /imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imconfig.h -------------------------------------------------------------------------------- /imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui.cpp -------------------------------------------------------------------------------- /imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui.h -------------------------------------------------------------------------------- /imgui.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui.ini -------------------------------------------------------------------------------- /imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui_impl_glfw_gl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui_impl_glfw_gl3.cpp -------------------------------------------------------------------------------- /imgui_impl_glfw_gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui_impl_glfw_gl3.h -------------------------------------------------------------------------------- /imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui_internal.h -------------------------------------------------------------------------------- /imgui_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/imgui_setup.h -------------------------------------------------------------------------------- /libglfw3_LINUX.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/libglfw3_LINUX.a -------------------------------------------------------------------------------- /libglfw3_OSX.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/libglfw3_OSX.a -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/main.cpp -------------------------------------------------------------------------------- /shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/shader.fs -------------------------------------------------------------------------------- /shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/shader.vs -------------------------------------------------------------------------------- /stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/stb_image.h -------------------------------------------------------------------------------- /stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/stb_rect_pack.h -------------------------------------------------------------------------------- /stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/stb_textedit.h -------------------------------------------------------------------------------- /stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/stb_truetype.h -------------------------------------------------------------------------------- /wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwerners/BasicGLFWImgui/HEAD/wall.jpg --------------------------------------------------------------------------------