├── .gitignore ├── CMakeLists.txt ├── README.md ├── include └── openglErrorReporting.h ├── resources ├── License.txt └── pig.png ├── src ├── main.cpp └── openglErrorReporting.cpp └── thirdparty ├── enet-1.3.17 ├── CMakeLists.txt ├── ChangeLog ├── Doxyfile ├── DoxygenLayout.xml ├── LICENSE ├── Makefile.am ├── README ├── callbacks.c ├── compress.c ├── configure.ac ├── docs │ ├── FAQ.dox │ ├── design.dox │ ├── install.dox │ ├── license.dox │ ├── mainpage.dox │ └── tutorial.dox ├── enet.dsp ├── enet_dll.cbp ├── host.c ├── include │ └── enet │ │ ├── callbacks.h │ │ ├── enet.h │ │ ├── list.h │ │ ├── protocol.h │ │ ├── time.h │ │ ├── types.h │ │ ├── unix.h │ │ ├── utility.h │ │ └── win32.h ├── libenet.pc.in ├── list.c ├── m4 │ └── .keep ├── packet.c ├── peer.c ├── premake4.lua ├── protocol.c ├── unix.c └── win32.c ├── gl2d ├── CMakeLists.txt ├── include │ └── gl2d │ │ ├── gl2d.h │ │ └── gl2dParticleSystem.h └── src │ ├── gl2d.cpp │ └── gl2dParticleSystem.cpp ├── glad ├── CMakeLists.txt ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── src │ └── glad.c ├── glfw-3.3.2 ├── .mailmap ├── CMake │ ├── GenerateMappings.cmake │ ├── MacOSXBundleInfo.plist.in │ ├── i686-w64-mingw32-clang.cmake │ ├── i686-w64-mingw32.cmake │ ├── modules │ │ ├── FindEpollShim.cmake │ │ ├── FindOSMesa.cmake │ │ ├── FindWaylandProtocols.cmake │ │ └── FindXKBCommon.cmake │ ├── x86_64-w64-mingw32-clang.cmake │ └── x86_64-w64-mingw32.cmake ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cmake_uninstall.cmake.in ├── deps │ ├── getopt.c │ ├── getopt.h │ ├── glad │ │ ├── gl.h │ │ ├── khrplatform.h │ │ ├── vk_platform.h │ │ └── vulkan.h │ ├── glad_gl.c │ ├── glad_vulkan.c │ ├── linmath.h │ ├── mingw │ │ ├── _mingw_dxhelper.h │ │ ├── dinput.h │ │ └── xinput.h │ ├── nuklear.h │ ├── nuklear_glfw_gl2.h │ ├── stb_image_write.h │ ├── tinycthread.c │ ├── tinycthread.h │ └── vs2008 │ │ └── stdint.h ├── docs │ ├── CMakeLists.txt │ ├── CODEOWNERS │ ├── CONTRIBUTING.md │ ├── Doxyfile.in │ ├── DoxygenLayout.xml │ ├── SUPPORT.md │ ├── build.dox │ ├── compat.dox │ ├── compile.dox │ ├── context.dox │ ├── extra.css │ ├── extra.less │ ├── footer.html │ ├── header.html │ ├── input.dox │ ├── internal.dox │ ├── intro.dox │ ├── main.dox │ ├── monitor.dox │ ├── moving.dox │ ├── news.dox │ ├── quick.dox │ ├── spaces.svg │ ├── vulkan.dox │ └── window.dox ├── examples │ ├── CMakeLists.txt │ ├── boing.c │ ├── gears.c │ ├── glfw.icns │ ├── glfw.ico │ ├── glfw.rc │ ├── heightmap.c │ ├── offscreen.c │ ├── particles.c │ ├── sharing.c │ ├── simple.c │ ├── splitview.c │ └── wave.c ├── include │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h ├── src │ ├── CMakeLists.txt │ ├── cocoa_init.m │ ├── cocoa_joystick.h │ ├── cocoa_joystick.m │ ├── cocoa_monitor.m │ ├── cocoa_platform.h │ ├── cocoa_time.c │ ├── cocoa_window.m │ ├── context.c │ ├── egl_context.c │ ├── egl_context.h │ ├── glfw3.pc.in │ ├── glfw3Config.cmake.in │ ├── glfw_config.h.in │ ├── glx_context.c │ ├── glx_context.h │ ├── init.c │ ├── input.c │ ├── internal.h │ ├── linux_joystick.c │ ├── linux_joystick.h │ ├── mappings.h │ ├── mappings.h.in │ ├── monitor.c │ ├── nsgl_context.h │ ├── nsgl_context.m │ ├── null_init.c │ ├── null_joystick.c │ ├── null_joystick.h │ ├── null_monitor.c │ ├── null_platform.h │ ├── null_window.c │ ├── osmesa_context.c │ ├── osmesa_context.h │ ├── posix_thread.c │ ├── posix_thread.h │ ├── posix_time.c │ ├── posix_time.h │ ├── vulkan.c │ ├── wgl_context.c │ ├── wgl_context.h │ ├── win32_init.c │ ├── win32_joystick.c │ ├── win32_joystick.h │ ├── win32_monitor.c │ ├── win32_platform.h │ ├── win32_thread.c │ ├── win32_time.c │ ├── win32_window.c │ ├── window.c │ ├── wl_init.c │ ├── wl_monitor.c │ ├── wl_platform.h │ ├── wl_window.c │ ├── x11_init.c │ ├── x11_monitor.c │ ├── x11_platform.h │ ├── x11_window.c │ ├── xkb_unicode.c │ └── xkb_unicode.h └── tests │ ├── CMakeLists.txt │ ├── clipboard.c │ ├── cursor.c │ ├── empty.c │ ├── events.c │ ├── gamma.c │ ├── glfwinfo.c │ ├── icon.c │ ├── iconify.c │ ├── inputlag.c │ ├── joysticks.c │ ├── monitors.c │ ├── msaa.c │ ├── opacity.c │ ├── reopen.c │ ├── tearing.c │ ├── threads.c │ ├── timeout.c │ ├── title.c │ ├── triangle-vulkan.c │ └── windows.c ├── glm ├── CMakeLists.txt └── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── detail │ ├── _features.hpp │ ├── _fixes.hpp │ ├── _noise.hpp │ ├── _swizzle.hpp │ ├── _swizzle_func.hpp │ ├── _vectorize.hpp │ ├── compute_common.hpp │ ├── compute_vector_relational.hpp │ ├── func_common.inl │ ├── func_common_simd.inl │ ├── func_exponential.inl │ ├── func_exponential_simd.inl │ ├── func_geometric.inl │ ├── func_geometric_simd.inl │ ├── func_integer.inl │ ├── func_integer_simd.inl │ ├── func_matrix.inl │ ├── func_matrix_simd.inl │ ├── func_packing.inl │ ├── func_packing_simd.inl │ ├── func_trigonometric.inl │ ├── func_trigonometric_simd.inl │ ├── func_vector_relational.inl │ ├── func_vector_relational_simd.inl │ ├── glm.cpp │ ├── qualifier.hpp │ ├── setup.hpp │ ├── type_half.hpp │ ├── type_half.inl │ ├── type_mat2x2.hpp │ ├── type_mat2x2.inl │ ├── type_mat2x3.hpp │ ├── type_mat2x3.inl │ ├── type_mat2x4.hpp │ ├── type_mat2x4.inl │ ├── type_mat3x2.hpp │ ├── type_mat3x2.inl │ ├── type_mat3x3.hpp │ ├── type_mat3x3.inl │ ├── type_mat3x4.hpp │ ├── type_mat3x4.inl │ ├── type_mat4x2.hpp │ ├── type_mat4x2.inl │ ├── type_mat4x3.hpp │ ├── type_mat4x3.inl │ ├── type_mat4x4.hpp │ ├── type_mat4x4.inl │ ├── type_mat4x4_simd.inl │ ├── type_quat.hpp │ ├── type_quat.inl │ ├── type_quat_simd.inl │ ├── type_vec1.hpp │ ├── type_vec1.inl │ ├── type_vec2.hpp │ ├── type_vec2.inl │ ├── type_vec3.hpp │ ├── type_vec3.inl │ ├── type_vec4.hpp │ ├── type_vec4.inl │ └── type_vec4_simd.inl │ ├── exponential.hpp │ ├── ext.hpp │ ├── ext │ ├── matrix_clip_space.hpp │ ├── matrix_clip_space.inl │ ├── matrix_double2x2.hpp │ ├── matrix_double2x2_precision.hpp │ ├── matrix_double2x3.hpp │ ├── matrix_double2x3_precision.hpp │ ├── matrix_double2x4.hpp │ ├── matrix_double2x4_precision.hpp │ ├── matrix_double3x2.hpp │ ├── matrix_double3x2_precision.hpp │ ├── matrix_double3x3.hpp │ ├── matrix_double3x3_precision.hpp │ ├── matrix_double3x4.hpp │ ├── matrix_double3x4_precision.hpp │ ├── matrix_double4x2.hpp │ ├── matrix_double4x2_precision.hpp │ ├── matrix_double4x3.hpp │ ├── matrix_double4x3_precision.hpp │ ├── matrix_double4x4.hpp │ ├── matrix_double4x4_precision.hpp │ ├── matrix_float2x2.hpp │ ├── matrix_float2x2_precision.hpp │ ├── matrix_float2x3.hpp │ ├── matrix_float2x3_precision.hpp │ ├── matrix_float2x4.hpp │ ├── matrix_float2x4_precision.hpp │ ├── matrix_float3x2.hpp │ ├── matrix_float3x2_precision.hpp │ ├── matrix_float3x3.hpp │ ├── matrix_float3x3_precision.hpp │ ├── matrix_float3x4.hpp │ ├── matrix_float3x4_precision.hpp │ ├── matrix_float4x2.hpp │ ├── matrix_float4x2_precision.hpp │ ├── matrix_float4x3.hpp │ ├── matrix_float4x3_precision.hpp │ ├── matrix_float4x4.hpp │ ├── matrix_float4x4_precision.hpp │ ├── matrix_projection.hpp │ ├── matrix_projection.inl │ ├── matrix_relational.hpp │ ├── matrix_relational.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── quaternion_common.hpp │ ├── quaternion_common.inl │ ├── quaternion_common_simd.inl │ ├── quaternion_double.hpp │ ├── quaternion_double_precision.hpp │ ├── quaternion_exponential.hpp │ ├── quaternion_exponential.inl │ ├── quaternion_float.hpp │ ├── quaternion_float_precision.hpp │ ├── quaternion_geometric.hpp │ ├── quaternion_geometric.inl │ ├── quaternion_relational.hpp │ ├── quaternion_relational.inl │ ├── quaternion_transform.hpp │ ├── quaternion_transform.inl │ ├── quaternion_trigonometric.hpp │ ├── quaternion_trigonometric.inl │ ├── scalar_common.hpp │ ├── scalar_common.inl │ ├── scalar_constants.hpp │ ├── scalar_constants.inl │ ├── scalar_float_sized.hpp │ ├── scalar_int_sized.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── scalar_uint_sized.hpp │ ├── vector_bool1.hpp │ ├── vector_bool1_precision.hpp │ ├── vector_bool2.hpp │ ├── vector_bool2_precision.hpp │ ├── vector_bool3.hpp │ ├── vector_bool3_precision.hpp │ ├── vector_bool4.hpp │ ├── vector_bool4_precision.hpp │ ├── vector_common.hpp │ ├── vector_common.inl │ ├── vector_double1.hpp │ ├── vector_double1_precision.hpp │ ├── vector_double2.hpp │ ├── vector_double2_precision.hpp │ ├── vector_double3.hpp │ ├── vector_double3_precision.hpp │ ├── vector_double4.hpp │ ├── vector_double4_precision.hpp │ ├── vector_float1.hpp │ ├── vector_float1_precision.hpp │ ├── vector_float2.hpp │ ├── vector_float2_precision.hpp │ ├── vector_float3.hpp │ ├── vector_float3_precision.hpp │ ├── vector_float4.hpp │ ├── vector_float4_precision.hpp │ ├── vector_int1.hpp │ ├── vector_int1_precision.hpp │ ├── vector_int2.hpp │ ├── vector_int2_precision.hpp │ ├── vector_int3.hpp │ ├── vector_int3_precision.hpp │ ├── vector_int4.hpp │ ├── vector_int4_precision.hpp │ ├── vector_relational.hpp │ ├── vector_relational.inl │ ├── vector_uint1.hpp │ ├── vector_uint1_precision.hpp │ ├── vector_uint2.hpp │ ├── vector_uint2_precision.hpp │ ├── vector_uint3.hpp │ ├── vector_uint3_precision.hpp │ ├── vector_uint4.hpp │ └── vector_uint4_precision.hpp │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.hpp │ ├── gtc │ ├── bitfield.hpp │ ├── bitfield.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── constants.hpp │ ├── constants.inl │ ├── epsilon.hpp │ ├── epsilon.inl │ ├── integer.hpp │ ├── integer.inl │ ├── matrix_access.hpp │ ├── matrix_access.inl │ ├── matrix_integer.hpp │ ├── matrix_inverse.hpp │ ├── matrix_inverse.inl │ ├── matrix_transform.hpp │ ├── matrix_transform.inl │ ├── noise.hpp │ ├── noise.inl │ ├── packing.hpp │ ├── packing.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── quaternion_simd.inl │ ├── random.hpp │ ├── random.inl │ ├── reciprocal.hpp │ ├── reciprocal.inl │ ├── round.hpp │ ├── round.inl │ ├── type_aligned.hpp │ ├── type_precision.hpp │ ├── type_precision.inl │ ├── type_ptr.hpp │ ├── type_ptr.inl │ ├── ulp.hpp │ ├── ulp.inl │ └── vec1.hpp │ ├── gtx │ ├── associated_min_max.hpp │ ├── associated_min_max.inl │ ├── bit.hpp │ ├── bit.inl │ ├── closest_point.hpp │ ├── closest_point.inl │ ├── color_encoding.hpp │ ├── color_encoding.inl │ ├── color_space.hpp │ ├── color_space.inl │ ├── color_space_YCoCg.hpp │ ├── color_space_YCoCg.inl │ ├── common.hpp │ ├── common.inl │ ├── compatibility.hpp │ ├── compatibility.inl │ ├── component_wise.hpp │ ├── component_wise.inl │ ├── dual_quaternion.hpp │ ├── dual_quaternion.inl │ ├── easing.hpp │ ├── easing.inl │ ├── euler_angles.hpp │ ├── euler_angles.inl │ ├── extend.hpp │ ├── extend.inl │ ├── extended_min_max.hpp │ ├── extended_min_max.inl │ ├── exterior_product.hpp │ ├── exterior_product.inl │ ├── fast_exponential.hpp │ ├── fast_exponential.inl │ ├── fast_square_root.hpp │ ├── fast_square_root.inl │ ├── fast_trigonometry.hpp │ ├── fast_trigonometry.inl │ ├── float_notmalize.inl │ ├── functions.hpp │ ├── functions.inl │ ├── gradient_paint.hpp │ ├── gradient_paint.inl │ ├── handed_coordinate_space.hpp │ ├── handed_coordinate_space.inl │ ├── hash.hpp │ ├── hash.inl │ ├── integer.hpp │ ├── integer.inl │ ├── intersect.hpp │ ├── intersect.inl │ ├── io.hpp │ ├── io.inl │ ├── log_base.hpp │ ├── log_base.inl │ ├── matrix_cross_product.hpp │ ├── matrix_cross_product.inl │ ├── matrix_decompose.hpp │ ├── matrix_decompose.inl │ ├── matrix_factorisation.hpp │ ├── matrix_factorisation.inl │ ├── matrix_interpolation.hpp │ ├── matrix_interpolation.inl │ ├── matrix_major_storage.hpp │ ├── matrix_major_storage.inl │ ├── matrix_operation.hpp │ ├── matrix_operation.inl │ ├── matrix_query.hpp │ ├── matrix_query.inl │ ├── matrix_transform_2d.hpp │ ├── matrix_transform_2d.inl │ ├── mixed_product.hpp │ ├── mixed_product.inl │ ├── norm.hpp │ ├── norm.inl │ ├── normal.hpp │ ├── normal.inl │ ├── normalize_dot.hpp │ ├── normalize_dot.inl │ ├── number_precision.hpp │ ├── number_precision.inl │ ├── optimum_pow.hpp │ ├── optimum_pow.inl │ ├── orthonormalize.hpp │ ├── orthonormalize.inl │ ├── perpendicular.hpp │ ├── perpendicular.inl │ ├── polar_coordinates.hpp │ ├── polar_coordinates.inl │ ├── projection.hpp │ ├── projection.inl │ ├── quaternion.hpp │ ├── quaternion.inl │ ├── range.hpp │ ├── raw_data.hpp │ ├── raw_data.inl │ ├── rotate_normalized_axis.hpp │ ├── rotate_normalized_axis.inl │ ├── rotate_vector.hpp │ ├── rotate_vector.inl │ ├── scalar_multiplication.hpp │ ├── scalar_relational.hpp │ ├── scalar_relational.inl │ ├── spline.hpp │ ├── spline.inl │ ├── std_based_type.hpp │ ├── std_based_type.inl │ ├── string_cast.hpp │ ├── string_cast.inl │ ├── texture.hpp │ ├── texture.inl │ ├── transform.hpp │ ├── transform.inl │ ├── transform2.hpp │ ├── transform2.inl │ ├── type_aligned.hpp │ ├── type_aligned.inl │ ├── type_trait.hpp │ ├── type_trait.inl │ ├── vec_swizzle.hpp │ ├── vector_angle.hpp │ ├── vector_angle.inl │ ├── vector_query.hpp │ ├── vector_query.inl │ ├── wrap.hpp │ └── wrap.inl │ ├── integer.hpp │ ├── mat2x2.hpp │ ├── mat2x3.hpp │ ├── mat2x4.hpp │ ├── mat3x2.hpp │ ├── mat3x3.hpp │ ├── mat3x4.hpp │ ├── mat4x2.hpp │ ├── mat4x3.hpp │ ├── mat4x4.hpp │ ├── matrix.hpp │ ├── packing.hpp │ ├── simd │ ├── common.h │ ├── exponential.h │ ├── geometric.h │ ├── integer.h │ ├── matrix.h │ ├── packing.h │ ├── platform.h │ ├── trigonometric.h │ └── vector_relational.h │ ├── trigonometric.hpp │ ├── vec2.hpp │ ├── vec3.hpp │ ├── vec4.hpp │ └── vector_relational.hpp ├── imgui-docking ├── CMakeLists.txt └── imgui │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE.txt │ ├── backends │ ├── imgui_impl_allegro5.cpp │ ├── imgui_impl_allegro5.h │ ├── imgui_impl_android.cpp │ ├── imgui_impl_android.h │ ├── imgui_impl_dx10.cpp │ ├── imgui_impl_dx10.h │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_dx12.cpp │ ├── imgui_impl_dx12.h │ ├── imgui_impl_dx9.cpp │ ├── imgui_impl_dx9.h │ ├── imgui_impl_glfw.cpp │ ├── imgui_impl_glfw.h │ ├── imgui_impl_glut.cpp │ ├── imgui_impl_glut.h │ ├── imgui_impl_metal.h │ ├── imgui_impl_metal.mm │ ├── imgui_impl_opengl2.cpp │ ├── imgui_impl_opengl2.h │ ├── imgui_impl_opengl3.cpp │ ├── imgui_impl_opengl3.h │ ├── imgui_impl_opengl3_loader.h │ ├── imgui_impl_osx.h │ ├── imgui_impl_osx.mm │ ├── imgui_impl_sdl2.cpp │ ├── imgui_impl_sdl2.h │ ├── imgui_impl_sdl3.cpp │ ├── imgui_impl_sdl3.h │ ├── imgui_impl_sdlrenderer.cpp │ ├── imgui_impl_sdlrenderer.h │ ├── imgui_impl_vulkan.cpp │ ├── imgui_impl_vulkan.h │ ├── imgui_impl_wgpu.cpp │ ├── imgui_impl_wgpu.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ └── vulkan │ │ ├── generate_spv.sh │ │ ├── glsl_shader.frag │ │ └── glsl_shader.vert │ ├── docs │ ├── BACKENDS.md │ ├── CHANGELOG.txt │ ├── CONTRIBUTING.md │ ├── EXAMPLES.md │ ├── FAQ.md │ ├── FONTS.md │ ├── README.md │ └── TODO.txt │ ├── examples │ ├── README.txt │ ├── example_allegro5 │ │ ├── README.md │ │ ├── example_allegro5.vcxproj │ │ ├── example_allegro5.vcxproj.filters │ │ ├── imconfig_allegro5.h │ │ └── main.cpp │ ├── example_android_opengl3 │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ └── MainActivity.kt │ │ │ ├── build.gradle │ │ │ └── settings.gradle │ │ └── main.cpp │ ├── example_apple_metal │ │ ├── README.md │ │ ├── example_apple_metal.xcodeproj │ │ │ └── project.pbxproj │ │ ├── iOS │ │ │ ├── Info-iOS.plist │ │ │ └── LaunchScreen.storyboard │ │ ├── macOS │ │ │ ├── Info-macOS.plist │ │ │ └── MainMenu.storyboard │ │ └── main.mm │ ├── example_apple_opengl2 │ │ ├── example_apple_opengl2.xcodeproj │ │ │ └── project.pbxproj │ │ └── main.mm │ ├── example_emscripten_wgpu │ │ ├── README.md │ │ └── main.cpp │ ├── example_glfw_metal │ │ └── main.mm │ ├── example_glfw_opengl2 │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl2.vcxproj │ │ ├── example_glfw_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_opengl3 │ │ ├── Makefile.emscripten │ │ ├── build_win32.bat │ │ ├── example_glfw_opengl3.vcxproj │ │ ├── example_glfw_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_glfw_vulkan │ │ ├── CMakeLists.txt │ │ ├── build_win32.bat │ │ ├── build_win64.bat │ │ ├── example_glfw_vulkan.vcxproj │ │ ├── example_glfw_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_glut_opengl2 │ │ ├── example_glut_opengl2.vcxproj │ │ ├── example_glut_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_null │ │ ├── build_win32.bat │ │ └── main.cpp │ ├── example_sdl2_directx11 │ │ ├── build_win32.bat │ │ ├── example_sdl2_directx11.vcxproj │ │ ├── example_sdl2_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_metal │ │ └── main.mm │ ├── example_sdl2_opengl2 │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl2.vcxproj │ │ ├── example_sdl2_opengl2.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_opengl3 │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_opengl3.vcxproj │ │ ├── example_sdl2_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_sdlrenderer │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl2_sdlrenderer.vcxproj │ │ ├── example_sdl2_sdlrenderer.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl2_vulkan │ │ ├── build_win32.bat │ │ ├── example_sdl2_vulkan.vcxproj │ │ ├── example_sdl2_vulkan.vcxproj.filters │ │ └── main.cpp │ ├── example_sdl3_opengl3 │ │ ├── Makefile.emscripten │ │ ├── README.md │ │ ├── build_win32.bat │ │ ├── example_sdl3_opengl3.vcxproj │ │ ├── example_sdl3_opengl3.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx10 │ │ ├── build_win32.bat │ │ ├── example_win32_directx10.vcxproj │ │ ├── example_win32_directx10.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx11 │ │ ├── build_win32.bat │ │ ├── example_win32_directx11.vcxproj │ │ ├── example_win32_directx11.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx12 │ │ ├── build_win32.bat │ │ ├── example_win32_directx12.vcxproj │ │ ├── example_win32_directx12.vcxproj.filters │ │ └── main.cpp │ ├── example_win32_directx9 │ │ ├── build_win32.bat │ │ ├── example_win32_directx9.vcxproj │ │ ├── example_win32_directx9.vcxproj.filters │ │ └── main.cpp │ ├── imgui_examples.sln │ └── libs │ │ ├── emscripten │ │ ├── emscripten_mainloop_stub.h │ │ └── shell_minimal.html │ │ ├── glfw │ │ ├── COPYING.txt │ │ ├── include │ │ │ └── GLFW │ │ │ │ ├── glfw3.h │ │ │ │ └── glfw3native.h │ │ ├── lib-vc2010-32 │ │ │ └── glfw3.lib │ │ └── lib-vc2010-64 │ │ │ └── glfw3.lib │ │ └── usynergy │ │ ├── README.txt │ │ ├── uSynergy.c │ │ └── uSynergy.h │ ├── imconfig.h │ ├── imfilebrowser.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imguiComboSearch.h │ ├── imguiRowsBackground.h │ ├── imguiThemes.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ ├── imstb_truetype.h │ └── misc │ ├── README.txt │ ├── cpp │ ├── README.txt │ ├── imgui_stdlib.cpp │ └── imgui_stdlib.h │ ├── debuggers │ ├── README.txt │ ├── imgui.gdb │ ├── imgui.natstepfilter │ └── imgui.natvis │ ├── fonts │ ├── Cousine-Regular.ttf │ ├── DroidSans.ttf │ ├── Karla-Regular.ttf │ ├── ProggyClean.ttf │ ├── ProggyTiny.ttf │ ├── Roboto-Medium.ttf │ └── binary_to_compressed_c.cpp │ ├── freetype │ ├── README.md │ ├── imgui_freetype.cpp │ └── imgui_freetype.h │ └── single_file │ └── imgui_single_file.h ├── raudio ├── CMakeLists.txt ├── include │ ├── external │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ ├── dr_wav.h │ │ ├── jar_mod.h │ │ ├── jar_xm.h │ │ ├── miniaudio.h │ │ └── stb_vorbis.h │ └── raudio.h └── src │ └── raudio.c ├── stb_image ├── CMakeLists.txt ├── include │ └── stb_image │ │ └── stb_image.h └── src │ └── stb_image.cpp └── stb_truetype ├── CMakeLists.txt ├── include └── stb_truetype │ └── stb_truetype.h └── src └── stb_truetype.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | bin/ 3 | build/ 4 | /.vs 5 | .idea/ 6 | CMakeSettings.json 7 | Makefile -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/README.md -------------------------------------------------------------------------------- /include/openglErrorReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/include/openglErrorReporting.h -------------------------------------------------------------------------------- /resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/resources/License.txt -------------------------------------------------------------------------------- /resources/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/resources/pig.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/openglErrorReporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/src/openglErrorReporting.cpp -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/ChangeLog -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/Doxyfile -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/DoxygenLayout.xml -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/LICENSE -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/Makefile.am -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/README -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/callbacks.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/compress.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/configure.ac -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/FAQ.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/FAQ.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/design.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/design.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/install.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/install.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/license.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/license.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/mainpage.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/docs/tutorial.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/docs/tutorial.dox -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/enet.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/enet.dsp -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/enet_dll.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/enet_dll.cbp -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/host.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/callbacks.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/enet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/enet.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/list.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/protocol.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/time.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/types.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/unix.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/utility.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/include/enet/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/include/enet/win32.h -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/libenet.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/libenet.pc.in -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/list.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/packet.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/peer.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/premake4.lua -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/protocol.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/unix.c -------------------------------------------------------------------------------- /thirdparty/enet-1.3.17/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/enet-1.3.17/win32.c -------------------------------------------------------------------------------- /thirdparty/gl2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/gl2d/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/gl2d/include/gl2d/gl2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/gl2d/include/gl2d/gl2d.h -------------------------------------------------------------------------------- /thirdparty/gl2d/include/gl2d/gl2dParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/gl2d/include/gl2d/gl2dParticleSystem.h -------------------------------------------------------------------------------- /thirdparty/gl2d/src/gl2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/gl2d/src/gl2d.cpp -------------------------------------------------------------------------------- /thirdparty/gl2d/src/gl2dParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/gl2d/src/gl2dParticleSystem.cpp -------------------------------------------------------------------------------- /thirdparty/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glad/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /thirdparty/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glad/include/glad/glad.h -------------------------------------------------------------------------------- /thirdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glad/src/glad.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/.mailmap -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/modules/FindWaylandProtocols.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/modules/FindWaylandProtocols.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/modules/FindXKBCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/modules/FindXKBCommon.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/LICENSE.md -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/README.md -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/getopt.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/getopt.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad/gl.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad/khrplatform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad/vk_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad/vulkan.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad_gl.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/glad_vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/glad_vulkan.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/linmath.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/mingw/dinput.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/mingw/xinput.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/nuklear.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/stb_image_write.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/tinycthread.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/tinycthread.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/CODEOWNERS -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/Doxyfile.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/SUPPORT.md -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/build.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/compat.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/compile.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/context.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/extra.css -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/extra.less -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/footer.html -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/header.html -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/input.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/internal.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/intro.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/main.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/monitor.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/moving.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/news.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/quick.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/spaces.svg -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/vulkan.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/docs/window.dox -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/boing.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/gears.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/glfw.icns -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/glfw.ico -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/glfw.rc -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/heightmap.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/offscreen.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/particles.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/sharing.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/simple.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/splitview.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/examples/wave.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_init.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_joystick.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_monitor.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/cocoa_window.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/egl_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/egl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/glfw3.pc.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/glfw_config.h.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/glx_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/glx_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/input.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/internal.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/linux_joystick.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/linux_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/mappings.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/mappings.h.in -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/nsgl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/nsgl_context.m -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_joystick.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/null_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/osmesa_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/osmesa_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/posix_thread.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/posix_thread.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/posix_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/posix_time.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/vulkan.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wgl_context.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wgl_context.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_joystick.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_joystick.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_thread.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_time.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/win32_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wl_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wl_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wl_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/wl_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/x11_init.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/x11_monitor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/x11_platform.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/x11_window.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/xkb_unicode.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/src/xkb_unicode.h -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/clipboard.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/cursor.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/empty.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/events.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/gamma.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/glfwinfo.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/icon.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/iconify.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/inputlag.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/joysticks.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/monitors.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/msaa.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/opacity.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/reopen.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/tearing.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/threads.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/timeout.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/title.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /thirdparty/glfw-3.3.2/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glfw-3.3.2/tests/windows.c -------------------------------------------------------------------------------- /thirdparty/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_float_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_float_sized.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/glm.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /thirdparty/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/integer.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/packing.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/common.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /thirdparty/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /thirdparty/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/.editorconfig -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/.gitattributes -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/.gitignore -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_allegro5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_allegro5.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_allegro5.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx10.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx10.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx11.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx12.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx12.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_dx9.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_glfw.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_glut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_glut.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_glut.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_metal.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_metal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_metal.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl2.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl2.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_osx.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_osx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_osx.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl2.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl2.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl3.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdl3.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdlrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdlrenderer.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_sdlrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_sdlrenderer.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_vulkan.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_vulkan.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_wgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_wgpu.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_wgpu.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/imgui_impl_win32.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/vulkan/generate_spv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/vulkan/generate_spv.sh -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/vulkan/glsl_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/vulkan/glsl_shader.frag -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/backends/vulkan/glsl_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/backends/vulkan/glsl_shader.vert -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/BACKENDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/BACKENDS.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/CHANGELOG.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/EXAMPLES.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/FAQ.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/FONTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/FONTS.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/docs/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/docs/TODO.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/README.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_allegro5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_allegro5/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_allegro5/example_allegro5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_allegro5/example_allegro5.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_allegro5/example_allegro5.vcxproj.filters -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_allegro5/imconfig_allegro5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_allegro5/imconfig_allegro5.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_allegro5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_allegro5/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_android_opengl3/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/.gitignore -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/app/build.gradle -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/build.gradle -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_android_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_android_opengl3/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/iOS/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/iOS/Info-iOS.plist -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/macOS/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/macOS/Info-macOS.plist -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/macOS/MainMenu.storyboard -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_metal/main.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_apple_opengl2/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_apple_opengl2/main.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_emscripten_wgpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_emscripten_wgpu/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_emscripten_wgpu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_emscripten_wgpu/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_metal/main.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl2/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_opengl3/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/build_win64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/build_win64.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glfw_vulkan/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glut_opengl2/example_glut_opengl2.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_glut_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_glut_opengl2/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_null/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_null/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_null/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_null/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_directx11/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_metal/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_metal/main.mm -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl2/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_opengl3/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_sdlrenderer/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj.filters -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl2_vulkan/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/Makefile.emscripten -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/example_sdl3_opengl3.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_sdl3_opengl3/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx10/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx10/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx10/example_win32_directx10.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx10/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx10/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx11/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx11/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx11/example_win32_directx11.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx11/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx12/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx12/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx12/example_win32_directx12.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx12/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx12/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx9/build_win32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx9/build_win32.bat -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx9/example_win32_directx9.vcxproj -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/example_win32_directx9/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/example_win32_directx9/main.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/imgui_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/imgui_examples.sln -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/emscripten/emscripten_mainloop_stub.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/emscripten/shell_minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/emscripten/shell_minimal.html -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/glfw/COPYING.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/glfw/lib-vc2010-32/glfw3.lib -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/glfw/lib-vc2010-64/glfw3.lib -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/usynergy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/usynergy/README.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/usynergy/uSynergy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/usynergy/uSynergy.c -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/examples/libs/usynergy/uSynergy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/examples/libs/usynergy/uSynergy.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imconfig.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imfilebrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imfilebrowser.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imguiComboSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imguiComboSearch.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imguiRowsBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imguiRowsBackground.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imguiThemes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imguiThemes.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui_internal.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/README.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/cpp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/cpp/README.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/cpp/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/cpp/imgui_stdlib.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/cpp/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/cpp/imgui_stdlib.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/debuggers/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/debuggers/README.txt -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/debuggers/imgui.gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/debuggers/imgui.gdb -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/debuggers/imgui.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/debuggers/imgui.natstepfilter -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/debuggers/imgui.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/debuggers/imgui.natvis -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/Cousine-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/Cousine-Regular.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/DroidSans.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/Karla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/Karla-Regular.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/fonts/binary_to_compressed_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/fonts/binary_to_compressed_c.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/freetype/README.md -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /thirdparty/imgui-docking/imgui/misc/single_file/imgui_single_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/imgui-docking/imgui/misc/single_file/imgui_single_file.h -------------------------------------------------------------------------------- /thirdparty/raudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/dr_flac.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/dr_mp3.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/dr_wav.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/jar_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/jar_mod.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/jar_xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/jar_xm.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/miniaudio.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/external/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/external/stb_vorbis.h -------------------------------------------------------------------------------- /thirdparty/raudio/include/raudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/include/raudio.h -------------------------------------------------------------------------------- /thirdparty/raudio/src/raudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/raudio/src/raudio.c -------------------------------------------------------------------------------- /thirdparty/stb_image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_image/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/stb_image/include/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_image/include/stb_image/stb_image.h -------------------------------------------------------------------------------- /thirdparty/stb_image/src/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_image/src/stb_image.cpp -------------------------------------------------------------------------------- /thirdparty/stb_truetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_truetype/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/stb_truetype/include/stb_truetype/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_truetype/include/stb_truetype/stb_truetype.h -------------------------------------------------------------------------------- /thirdparty/stb_truetype/src/stb_truetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meemknight/GLFWCMakeSetup/HEAD/thirdparty/stb_truetype/src/stb_truetype.cpp --------------------------------------------------------------------------------