├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cubicdistort └── main.cpp ├── lib ├── .gitignore ├── glfw-3.0.3 │ ├── CMake │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEGL.cmake │ │ │ ├── FindGLESv1.cmake │ │ │ └── FindGLESv2.cmake │ │ └── x86_64-w64-mingw32.cmake │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── README.md │ ├── cmake_uninstall.cmake.in │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── context.dox │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── bug.html │ │ │ ├── build.html │ │ │ ├── build_8dox.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── compat.html │ │ │ ├── compat_8dox.html │ │ │ ├── context.html │ │ │ ├── context_8dox.html │ │ │ ├── dir_80d91bc42d425e8749e0351b5cb3a3b0.html │ │ │ ├── dir_b0a9372d11f67e304e6bfaf90d9d98b2.html │ │ │ ├── dir_f9e30f7f63769b7dda60d23770359d34.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── glfw3_8h.html │ │ │ ├── glfw3_8h_source.html │ │ │ ├── glfw3native_8h.html │ │ │ ├── glfw3native_8h_source.html │ │ │ ├── globals.html │ │ │ ├── globals_0x62.html │ │ │ ├── globals_0x63.html │ │ │ ├── globals_0x64.html │ │ │ ├── globals_0x65.html │ │ │ ├── globals_0x66.html │ │ │ ├── globals_0x67.html │ │ │ ├── globals_0x68.html │ │ │ ├── globals_0x69.html │ │ │ ├── globals_0x6a.html │ │ │ ├── globals_0x6b.html │ │ │ ├── globals_0x6c.html │ │ │ ├── globals_0x6d.html │ │ │ ├── globals_0x6e.html │ │ │ ├── globals_0x6f.html │ │ │ ├── globals_0x70.html │ │ │ ├── globals_0x72.html │ │ │ ├── globals_0x73.html │ │ │ ├── globals_0x74.html │ │ │ ├── globals_0x76.html │ │ │ ├── globals_0x77.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_defs_0x62.html │ │ │ ├── globals_defs_0x63.html │ │ │ ├── globals_defs_0x64.html │ │ │ ├── globals_defs_0x66.html │ │ │ ├── globals_defs_0x67.html │ │ │ ├── globals_defs_0x69.html │ │ │ ├── globals_defs_0x6a.html │ │ │ ├── globals_defs_0x6b.html │ │ │ ├── globals_defs_0x6c.html │ │ │ ├── globals_defs_0x6d.html │ │ │ ├── globals_defs_0x6e.html │ │ │ ├── globals_defs_0x6f.html │ │ │ ├── globals_defs_0x70.html │ │ │ ├── globals_defs_0x72.html │ │ │ ├── globals_defs_0x73.html │ │ │ ├── globals_defs_0x76.html │ │ │ ├── globals_func.html │ │ │ ├── globals_type.html │ │ │ ├── group__buttons.html │ │ │ ├── group__clipboard.html │ │ │ ├── group__context.html │ │ │ ├── group__error.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__time.html │ │ │ ├── group__window.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── main_8dox.html │ │ │ ├── modules.html │ │ │ ├── monitor.html │ │ │ ├── monitor_8dox.html │ │ │ ├── moving.html │ │ │ ├── moving_8dox.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── news.html │ │ │ ├── news_8dox.html │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── quick.html │ │ │ ├── quick_8dox.html │ │ │ ├── search │ │ │ │ ├── all_62.html │ │ │ │ ├── all_62.js │ │ │ │ ├── all_63.html │ │ │ │ ├── all_63.js │ │ │ │ ├── all_65.html │ │ │ │ ├── all_65.js │ │ │ │ ├── all_67.html │ │ │ │ ├── all_67.js │ │ │ │ ├── all_68.html │ │ │ │ ├── all_68.js │ │ │ │ ├── all_69.html │ │ │ │ ├── all_69.js │ │ │ │ ├── all_6a.html │ │ │ │ ├── all_6a.js │ │ │ │ ├── all_6b.html │ │ │ │ ├── all_6b.js │ │ │ │ ├── all_6d.html │ │ │ │ ├── all_6d.js │ │ │ │ ├── all_6e.html │ │ │ │ ├── all_6e.js │ │ │ │ ├── all_71.html │ │ │ │ ├── all_71.js │ │ │ │ ├── all_72.html │ │ │ │ ├── all_72.js │ │ │ │ ├── all_73.html │ │ │ │ ├── all_73.js │ │ │ │ ├── all_74.html │ │ │ │ ├── all_74.js │ │ │ │ ├── all_77.html │ │ │ │ ├── all_77.js │ │ │ │ ├── classes_67.html │ │ │ │ ├── classes_67.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_67.html │ │ │ │ ├── defines_67.js │ │ │ │ ├── files_62.html │ │ │ │ ├── files_62.js │ │ │ │ ├── files_63.html │ │ │ │ ├── files_63.js │ │ │ │ ├── files_67.html │ │ │ │ ├── files_67.js │ │ │ │ ├── files_6d.html │ │ │ │ ├── files_6d.js │ │ │ │ ├── files_6e.html │ │ │ │ ├── files_6e.js │ │ │ │ ├── files_71.html │ │ │ │ ├── files_71.js │ │ │ │ ├── files_77.html │ │ │ │ ├── files_77.js │ │ │ │ ├── functions_67.html │ │ │ │ ├── functions_67.js │ │ │ │ ├── groups_63.html │ │ │ │ ├── groups_63.js │ │ │ │ ├── groups_65.html │ │ │ │ ├── groups_65.js │ │ │ │ ├── groups_69.html │ │ │ │ ├── groups_69.js │ │ │ │ ├── groups_6a.html │ │ │ │ ├── groups_6a.js │ │ │ │ ├── groups_6b.html │ │ │ │ ├── groups_6b.js │ │ │ │ ├── groups_6d.html │ │ │ │ ├── groups_6d.js │ │ │ │ ├── groups_6e.html │ │ │ │ ├── groups_6e.js │ │ │ │ ├── groups_74.html │ │ │ │ ├── groups_74.js │ │ │ │ ├── groups_77.html │ │ │ │ ├── groups_77.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_62.html │ │ │ │ ├── pages_62.js │ │ │ │ ├── pages_63.html │ │ │ │ ├── pages_63.js │ │ │ │ ├── pages_67.html │ │ │ │ ├── pages_67.js │ │ │ │ ├── pages_6d.html │ │ │ │ ├── pages_6d.js │ │ │ │ ├── pages_6e.html │ │ │ │ ├── pages_6e.js │ │ │ │ ├── pages_73.html │ │ │ │ ├── pages_73.js │ │ │ │ ├── pages_77.html │ │ │ │ ├── pages_77.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── typedefs_67.html │ │ │ │ ├── typedefs_67.js │ │ │ │ ├── variables_62.html │ │ │ │ ├── variables_62.js │ │ │ │ ├── variables_67.html │ │ │ │ ├── variables_67.js │ │ │ │ ├── variables_68.html │ │ │ │ ├── variables_68.js │ │ │ │ ├── variables_72.html │ │ │ │ ├── variables_72.js │ │ │ │ ├── variables_73.html │ │ │ │ ├── variables_73.js │ │ │ │ ├── variables_77.html │ │ │ │ └── variables_77.js │ │ │ ├── structGLFWgammaramp.html │ │ │ ├── structGLFWvidmode.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── window.html │ │ │ └── window_8dox.html │ │ ├── internal.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ └── window.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── heightmap.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── clipboard.c │ │ ├── cocoa_clipboard.m │ │ ├── cocoa_gamma.c │ │ ├── cocoa_init.m │ │ ├── cocoa_joystick.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_time.c │ │ ├── cocoa_window.m │ │ ├── config.h.in │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_platform.h │ │ ├── gamma.c │ │ ├── glfw3.pc.in │ │ ├── glfwConfig.cmake.in │ │ ├── glfwConfigVersion.cmake.in │ │ ├── glx_context.c │ │ ├── glx_platform.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── joystick.c │ │ ├── monitor.c │ │ ├── nsgl_context.m │ │ ├── nsgl_platform.h │ │ ├── time.c │ │ ├── wgl_context.c │ │ ├── wgl_platform.h │ │ ├── win32_clipboard.c │ │ ├── win32_gamma.c │ │ ├── win32_init.c │ │ ├── win32_joystick.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── x11_clipboard.c │ │ ├── x11_gamma.c │ │ ├── x11_init.c │ │ ├── x11_joystick.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_time.c │ │ ├── x11_unicode.c │ │ └── x11_window.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── accuracy.c │ │ ├── clipboard.c │ │ ├── defaults.c │ │ ├── events.c │ │ ├── fsaa.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── iconify.c │ │ ├── joysticks.c │ │ ├── modes.c │ │ ├── peter.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── title.c │ │ └── windows.c ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _literals.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── dummy.cpp │ │ ├── func_common.hpp │ │ ├── func_common.inl │ │ ├── func_exponential.hpp │ │ ├── func_exponential.inl │ │ ├── func_geometric.hpp │ │ ├── func_geometric.inl │ │ ├── func_integer.hpp │ │ ├── func_integer.inl │ │ ├── func_matrix.hpp │ │ ├── func_matrix.inl │ │ ├── func_noise.hpp │ │ ├── func_noise.inl │ │ ├── func_packing.hpp │ │ ├── func_packing.inl │ │ ├── func_trigonometric.hpp │ │ ├── func_trigonometric.inl │ │ ├── func_vector_relational.hpp │ │ ├── func_vector_relational.inl │ │ ├── glm.cpp │ │ ├── hint.hpp │ │ ├── intrinsic_common.hpp │ │ ├── intrinsic_common.inl │ │ ├── intrinsic_exponential.hpp │ │ ├── intrinsic_exponential.inl │ │ ├── intrinsic_geometric.hpp │ │ ├── intrinsic_geometric.inl │ │ ├── intrinsic_integer.hpp │ │ ├── intrinsic_integer.inl │ │ ├── intrinsic_matrix.hpp │ │ ├── intrinsic_matrix.inl │ │ ├── intrinsic_trigonometric.hpp │ │ ├── intrinsic_trigonometric.inl │ │ ├── intrinsic_vector_relational.hpp │ │ ├── intrinsic_vector_relational.inl │ │ ├── precision.hpp │ │ ├── precision.inl │ │ ├── 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_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 │ ├── exponential.hpp │ ├── ext.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.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 │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ └── ulp.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 │ │ ├── compatibility.hpp │ │ ├── compatibility.inl │ │ ├── component_wise.hpp │ │ ├── component_wise.inl │ │ ├── constants.hpp │ │ ├── dual_quaternion.hpp │ │ ├── dual_quaternion.inl │ │ ├── epsilon.hpp │ │ ├── euler_angles.hpp │ │ ├── euler_angles.inl │ │ ├── extend.hpp │ │ ├── extend.inl │ │ ├── extented_min_max.hpp │ │ ├── extented_min_max.inl │ │ ├── fast_exponential.hpp │ │ ├── fast_exponential.inl │ │ ├── fast_square_root.hpp │ │ ├── fast_square_root.inl │ │ ├── fast_trigonometry.hpp │ │ ├── fast_trigonometry.inl │ │ ├── gradient_paint.hpp │ │ ├── gradient_paint.inl │ │ ├── handed_coordinate_space.hpp │ │ ├── handed_coordinate_space.inl │ │ ├── inertia.hpp │ │ ├── inertia.inl │ │ ├── int_10_10_10_2.hpp │ │ ├── int_10_10_10_2.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_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 │ │ ├── multiple.hpp │ │ ├── multiple.inl │ │ ├── noise.hpp │ │ ├── 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 │ │ ├── random.hpp │ │ ├── raw_data.hpp │ │ ├── raw_data.inl │ │ ├── reciprocal.hpp │ │ ├── rotate_normalized_axis.hpp │ │ ├── rotate_normalized_axis.inl │ │ ├── rotate_vector.hpp │ │ ├── rotate_vector.inl │ │ ├── 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 │ │ ├── ulp.hpp │ │ ├── unsigned_int.hpp │ │ ├── unsigned_int.inl │ │ ├── vec1.hpp │ │ ├── vec1.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 │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── rgbe.c └── rgbe.h └── src ├── core ├── app.cpp ├── app.h ├── camera.cpp ├── camera.h ├── cubemap.cpp ├── cubemap.h ├── geometries.cpp ├── geometries.h ├── geometry.cpp ├── geometry.h ├── mesh.cpp ├── mesh.h ├── texture.cpp └── texture.h ├── hdr ├── hdrtexturecube.cpp └── hdrtexturecube.h ├── helpers ├── debug.cpp ├── debug.h ├── glfwfunc.cpp ├── glfwfunc.h ├── globals.cpp ├── globals.h ├── graphics.h ├── objparser.cpp ├── objparser.h ├── shaderlibrary.cpp ├── shaderlibrary.h └── utils.h ├── main.cpp └── render ├── framebuffer.cpp ├── framebuffer.h ├── material.cpp ├── material.h ├── materialcubemap.cpp ├── materialcubemap.h ├── renderer.cpp ├── renderer.h ├── shader.cpp └── shader.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/README.md -------------------------------------------------------------------------------- /cubicdistort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/cubicdistort/main.cpp -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/amd64-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/amd64-mingw32msvc.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/i586-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/i586-mingw32msvc.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/i686-pc-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/i686-pc-mingw32.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/modules/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/modules/FindEGL.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/modules/FindGLESv1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/modules/FindGLESv1.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/modules/FindGLESv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/modules/FindGLESv2.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /lib/glfw-3.0.3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/COPYING.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/README.md -------------------------------------------------------------------------------- /lib/glfw-3.0.3/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/EGL/eglext.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/GL/glext.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/GL/glxext.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/GL/wglext.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/getopt.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/getopt.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/tinycthread.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/deps/tinycthread.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/Doxyfile.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/build.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/compat.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/context.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/annotated.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/bc_s.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/bdwn.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/bug.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/build.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/build_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/build_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/classes.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/closed.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/compat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/compat.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/compat_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/compat_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/context.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/context_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/context_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/dir_80d91bc42d425e8749e0351b5cb3a3b0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/dir_80d91bc42d425e8749e0351b5cb3a3b0.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/dir_b0a9372d11f67e304e6bfaf90d9d98b2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/dir_b0a9372d11f67e304e6bfaf90d9d98b2.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/dir_f9e30f7f63769b7dda60d23770359d34.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/dir_f9e30f7f63769b7dda60d23770359d34.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/doxygen.css -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/doxygen.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/dynsections.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/files.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2blank.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2cl.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2doc.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2folderopen.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2lastnode.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2link.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2mnode.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2mo.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2node.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2ns.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2plastnode.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2pnode.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2splitbar.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/ftv2vertline.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/functions.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/functions_vars.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/glfw3_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/glfw3_8h.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/glfw3_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/glfw3_8h_source.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/glfw3native_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/glfw3native_8h.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/glfw3native_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/glfw3native_8h_source.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x64.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x65.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x66.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x68.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x69.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6a.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6b.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6c.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x6f.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x70.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x72.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x73.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x74.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x76.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_0x77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_0x77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x64.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x64.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x66.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x66.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x69.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6a.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6b.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6c.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x6f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x6f.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x70.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x72.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x73.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_defs_0x76.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_defs_0x76.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_func.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/globals_type.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__buttons.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__clipboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__clipboard.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__context.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__error.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__errors.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__init.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__input.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__joysticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__joysticks.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__keys.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__mods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__mods.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__monitor.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__native.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__native.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__time.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/group__window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/group__window.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/index.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/jquery.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/main_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/main_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/modules.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/monitor.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/monitor_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/monitor_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/moving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/moving.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/moving_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/moving_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/nav_f.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/nav_g.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/nav_h.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/news.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/news_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/news_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/open.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/pages.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/quick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/quick.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/quick_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/quick_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_62.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_63.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_65.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_65.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_68.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_68.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_68.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_69.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_69.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_69.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6a.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6a.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6b.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6b.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6d.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_6e.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_71.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_71.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_71.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_72.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_72.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_73.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_73.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_74.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_74.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/all_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/all_77.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/classes_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/classes_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/classes_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/classes_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/close.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/defines_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/defines_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/defines_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/defines_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_62.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_63.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_6d.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_6e.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_71.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_71.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_71.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_71.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/files_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/files_77.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/functions_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/functions_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/functions_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/functions_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_63.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_65.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_65.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_65.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_69.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_69.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_69.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_69.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6a.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6a.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6b.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6b.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6d.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_6e.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_74.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_74.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_74.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_74.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/groups_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/groups_77.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/nomatches.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_62.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_63.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_63.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_63.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_63.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_6d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_6d.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_6d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_6d.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_6e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_6e.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_6e.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_73.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_73.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/pages_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/pages_77.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/search.css -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/search.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/search_l.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/search_m.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/search_r.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/typedefs_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/typedefs_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/typedefs_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/typedefs_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_62.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_62.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_62.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_67.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_67.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_67.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_68.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_68.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_68.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_68.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_72.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_72.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_72.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_73.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_73.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_73.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_77.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_77.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/search/variables_77.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/search/variables_77.js -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/structGLFWgammaramp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/structGLFWgammaramp.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/structGLFWvidmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/structGLFWvidmode.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/sync_off.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/sync_on.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/tab_a.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/tab_b.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/tab_h.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/tab_s.png -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/tabs.css -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/window.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/html/window_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/html/window_8dox.html -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/internal.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/main.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/monitor.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/moving.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/news.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/quick.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/docs/window.dox -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/boing.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/gears.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/heightmap.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/simple.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/splitview.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/examples/wave.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/clipboard.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_clipboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_clipboard.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_gamma.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_init.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_joystick.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_monitor.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_time.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/cocoa_window.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/config.h.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/context.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/egl_context.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/egl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/egl_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/gamma.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/glfw3.pc.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/glfwConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/glfwConfig.cmake.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/glfwConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/glfwConfigVersion.cmake.in -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/glx_context.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/glx_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/glx_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/init.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/input.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/internal.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/joystick.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/monitor.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/nsgl_context.m -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/nsgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/nsgl_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/time.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/wgl_context.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/wgl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/wgl_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_clipboard.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_gamma.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_init.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_joystick.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_monitor.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_time.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/win32_window.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/window.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_clipboard.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_gamma.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_init.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_joystick.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_monitor.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_platform.h -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_time.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_unicode.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/src/x11_window.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/accuracy.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/clipboard.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/defaults.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/events.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/fsaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/fsaa.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/gamma.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/glfwinfo.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/iconify.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/joysticks.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/modes.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/peter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/peter.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/reopen.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/sharing.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/tearing.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/threads.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/title.c -------------------------------------------------------------------------------- /lib/glfw-3.0.3/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glfw-3.0.3/tests/windows.c -------------------------------------------------------------------------------- /lib/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/CMakeLists.txt -------------------------------------------------------------------------------- /lib/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_features.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /lib/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /lib/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /lib/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/glm.cpp -------------------------------------------------------------------------------- /lib/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/hint.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /lib/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /lib/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/precision.hpp -------------------------------------------------------------------------------- /lib/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/setup.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_half.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /lib/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/exponential.hpp -------------------------------------------------------------------------------- /lib/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/ext.hpp -------------------------------------------------------------------------------- /lib/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/fwd.hpp -------------------------------------------------------------------------------- /lib/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/geometric.hpp -------------------------------------------------------------------------------- /lib/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/glm.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/constants.inl -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /lib/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/noise.inl -------------------------------------------------------------------------------- /lib/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/packing.inl -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/random.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/random.inl -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/bit.inl -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /lib/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/extend.inl -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /lib/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /lib/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /lib/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /lib/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/integer.inl -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /lib/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/io.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/io.inl -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /lib/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/norm.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/normal.inl -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /lib/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/projection.inl -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /lib/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/random.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /lib/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /lib/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/spline.inl -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/transform.inl -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /lib/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /lib/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /lib/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/integer.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat2x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat2x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat2x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat3x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat3x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat3x4.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat4x2.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat4x3.hpp -------------------------------------------------------------------------------- /lib/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/mat4x4.hpp -------------------------------------------------------------------------------- /lib/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/matrix.hpp -------------------------------------------------------------------------------- /lib/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/packing.hpp -------------------------------------------------------------------------------- /lib/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/trigonometric.hpp -------------------------------------------------------------------------------- /lib/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/vec2.hpp -------------------------------------------------------------------------------- /lib/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/vec3.hpp -------------------------------------------------------------------------------- /lib/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/vec4.hpp -------------------------------------------------------------------------------- /lib/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/glm/vector_relational.hpp -------------------------------------------------------------------------------- /lib/rgbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/rgbe.c -------------------------------------------------------------------------------- /lib/rgbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/lib/rgbe.h -------------------------------------------------------------------------------- /src/core/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/app.cpp -------------------------------------------------------------------------------- /src/core/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/app.h -------------------------------------------------------------------------------- /src/core/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/camera.cpp -------------------------------------------------------------------------------- /src/core/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/camera.h -------------------------------------------------------------------------------- /src/core/cubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/cubemap.cpp -------------------------------------------------------------------------------- /src/core/cubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/cubemap.h -------------------------------------------------------------------------------- /src/core/geometries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/geometries.cpp -------------------------------------------------------------------------------- /src/core/geometries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/geometries.h -------------------------------------------------------------------------------- /src/core/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/geometry.cpp -------------------------------------------------------------------------------- /src/core/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/geometry.h -------------------------------------------------------------------------------- /src/core/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/mesh.cpp -------------------------------------------------------------------------------- /src/core/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/mesh.h -------------------------------------------------------------------------------- /src/core/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/texture.cpp -------------------------------------------------------------------------------- /src/core/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/core/texture.h -------------------------------------------------------------------------------- /src/hdr/hdrtexturecube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/hdr/hdrtexturecube.cpp -------------------------------------------------------------------------------- /src/hdr/hdrtexturecube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/hdr/hdrtexturecube.h -------------------------------------------------------------------------------- /src/helpers/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/debug.cpp -------------------------------------------------------------------------------- /src/helpers/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/debug.h -------------------------------------------------------------------------------- /src/helpers/glfwfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/glfwfunc.cpp -------------------------------------------------------------------------------- /src/helpers/glfwfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/glfwfunc.h -------------------------------------------------------------------------------- /src/helpers/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/globals.cpp -------------------------------------------------------------------------------- /src/helpers/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/globals.h -------------------------------------------------------------------------------- /src/helpers/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/graphics.h -------------------------------------------------------------------------------- /src/helpers/objparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/objparser.cpp -------------------------------------------------------------------------------- /src/helpers/objparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/objparser.h -------------------------------------------------------------------------------- /src/helpers/shaderlibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/shaderlibrary.cpp -------------------------------------------------------------------------------- /src/helpers/shaderlibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/shaderlibrary.h -------------------------------------------------------------------------------- /src/helpers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/helpers/utils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/render/framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/framebuffer.cpp -------------------------------------------------------------------------------- /src/render/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/framebuffer.h -------------------------------------------------------------------------------- /src/render/material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/material.cpp -------------------------------------------------------------------------------- /src/render/material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/material.h -------------------------------------------------------------------------------- /src/render/materialcubemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/materialcubemap.cpp -------------------------------------------------------------------------------- /src/render/materialcubemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/materialcubemap.h -------------------------------------------------------------------------------- /src/render/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/renderer.cpp -------------------------------------------------------------------------------- /src/render/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/renderer.h -------------------------------------------------------------------------------- /src/render/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/shader.cpp -------------------------------------------------------------------------------- /src/render/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karimnaaji/hdreffects/HEAD/src/render/shader.h --------------------------------------------------------------------------------