├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── GEN_VS.bat ├── LICENSE ├── README.md ├── bin ├── WinPixEventRuntime.dll ├── amd_ags_x64.dll ├── dxcompiler.dll ├── dxil.dll ├── fonts │ ├── ReadMe.md │ └── TitilliumText │ │ ├── OFL.txt │ │ └── TitilliumText-Bold.otf ├── gpucfg │ └── gpu.cfg ├── shaders │ ├── d3d12 │ │ ├── binary │ │ │ └── .gitignore │ │ ├── demo.frag │ │ ├── demo.vert │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ ├── fontstash3D.vert │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert │ ├── src │ │ ├── Parser.exe │ │ ├── demo_fs.hlsl │ │ ├── demo_vs.hlsl │ │ └── generate_shaders.bat │ └── vulkan │ │ ├── binary │ │ └── .gitignore │ │ ├── config.conf │ │ ├── demo.frag │ │ ├── demo.vert │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ ├── fontstash3D.vert │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert └── textures │ └── the-forge.dds ├── external ├── glfw │ ├── .mailmap │ ├── CMake │ │ ├── GenerateMappings.cmake │ │ ├── Info.plist.in │ │ ├── cmake_uninstall.cmake.in │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.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 │ ├── 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 │ │ ├── splitview.c │ │ ├── triangle-opengl.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 │ │ ├── glfw.rc.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 │ ├── copying.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_float.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_common.hpp │ │ ├── matrix_common.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_int_sized.hpp │ │ ├── scalar_integer.hpp │ │ ├── scalar_integer.inl │ │ ├── scalar_packing.hpp │ │ ├── scalar_packing.inl │ │ ├── scalar_relational.hpp │ │ ├── scalar_relational.inl │ │ ├── scalar_uint_sized.hpp │ │ ├── scalar_ulp.hpp │ │ ├── scalar_ulp.inl │ │ ├── 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_int1_sized.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_precision.hpp │ │ ├── vector_int2_sized.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_precision.hpp │ │ ├── vector_int3_sized.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_precision.hpp │ │ ├── vector_int4_sized.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_packing.hpp │ │ ├── vector_packing.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_precision.hpp │ │ ├── vector_uint1_sized.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_precision.hpp │ │ ├── vector_uint2_sized.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_precision.hpp │ │ ├── vector_uint3_sized.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_precision.hpp │ │ ├── vector_uint4_sized.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ ├── bitfield.hpp │ │ ├── bitfield.inl │ │ ├── color_space.hpp │ │ ├── color_space.inl │ │ ├── constants.hpp │ │ ├── constants.inl │ │ ├── epsilon.hpp │ │ ├── epsilon.inl │ │ ├── integer.hpp │ │ ├── integer.inl │ │ ├── matrix_access.hpp │ │ ├── matrix_access.inl │ │ ├── matrix_integer.hpp │ │ ├── matrix_inverse.hpp │ │ ├── matrix_inverse.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── noise.hpp │ │ ├── noise.inl │ │ ├── packing.hpp │ │ ├── packing.inl │ │ ├── quaternion.hpp │ │ ├── quaternion.inl │ │ ├── quaternion_simd.inl │ │ ├── random.hpp │ │ ├── random.inl │ │ ├── reciprocal.hpp │ │ ├── reciprocal.inl │ │ ├── round.hpp │ │ ├── round.inl │ │ ├── type_aligned.hpp │ │ ├── type_precision.hpp │ │ ├── type_precision.inl │ │ ├── type_ptr.hpp │ │ ├── type_ptr.inl │ │ ├── ulp.hpp │ │ ├── ulp.inl │ │ └── vec1.hpp │ │ ├── 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 │ │ ├── neon.h │ │ ├── packing.h │ │ ├── platform.h │ │ ├── trigonometric.h │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp └── the-forge │ ├── CMakeLists.txt │ ├── Common_3 │ ├── OS │ │ ├── Android │ │ │ ├── AndroidBase.cpp │ │ │ ├── AndroidFileSystem.cpp │ │ │ ├── AndroidLog.cpp │ │ │ ├── AndroidThread.cpp │ │ │ ├── AndroidTime.cpp │ │ │ ├── Visual Studio 2017 Setup.txt │ │ │ ├── android_native_app_glue.c │ │ │ └── android_native_app_glue.h │ │ ├── Camera │ │ │ └── CameraController.cpp │ │ ├── Core │ │ │ ├── Atomics.h │ │ │ ├── Compiler.h │ │ │ ├── DLL.h │ │ │ ├── GPUConfig.h │ │ │ ├── RingBuffer.h │ │ │ ├── Screenshot.cpp │ │ │ ├── TextureContainers.h │ │ │ ├── ThreadSystem.cpp │ │ │ ├── ThreadSystem.h │ │ │ └── Timer.cpp │ │ ├── Darwin │ │ │ ├── CocoaFileSystem.mm │ │ │ ├── DarwinLog.cpp │ │ │ ├── DarwinThread.cpp │ │ │ ├── iOSAppDelegate.h │ │ │ ├── iOSAppDelegate.m │ │ │ ├── iOSBase.mm │ │ │ ├── macOSAppDelegate.h │ │ │ ├── macOSAppDelegate.m │ │ │ └── macOSBase.mm │ │ ├── FileSystem │ │ │ ├── FileSystem.cpp │ │ │ ├── SystemRun.cpp │ │ │ ├── UnixFileSystem.cpp │ │ │ └── ZipFileSystem.cpp │ │ ├── Input │ │ │ └── InputSystem.cpp │ │ ├── Interfaces │ │ │ ├── IApp.h │ │ │ ├── ICameraController.h │ │ │ ├── IFileSystem.h │ │ │ ├── IInput.h │ │ │ ├── ILog.h │ │ │ ├── IMemory.h │ │ │ ├── IMiddleware.h │ │ │ ├── IOperatingSystem.h │ │ │ ├── IProfiler.h │ │ │ ├── IScreenshot.h │ │ │ ├── IThread.h │ │ │ └── ITime.h │ │ ├── Linux │ │ │ ├── LinuxBase.cpp │ │ │ ├── LinuxFileSystem.cpp │ │ │ ├── LinuxLog.cpp │ │ │ ├── LinuxThread.cpp │ │ │ └── LinuxTime.cpp │ │ ├── Logging │ │ │ ├── Log.cpp │ │ │ └── Log.h │ │ ├── Math │ │ │ └── MathTypes.h │ │ ├── MemoryTracking │ │ │ ├── MemoryTracking.cpp │ │ │ └── NoMemoryDefines.h │ │ ├── Profiler │ │ │ ├── GpuProfiler.cpp │ │ │ ├── GpuProfiler.h │ │ │ ├── ProfilerBase.cpp │ │ │ ├── ProfilerBase.h │ │ │ ├── ProfilerHTML.h │ │ │ └── ProfilerWidgetsUI.cpp │ │ └── Windows │ │ │ ├── WindowsBase.cpp │ │ │ ├── WindowsFileSystem.cpp │ │ │ ├── WindowsLog.cpp │ │ │ ├── WindowsStackTraceDump.cpp │ │ │ ├── WindowsStackTraceDump.h │ │ │ ├── WindowsThread.cpp │ │ │ └── WindowsTime.cpp │ ├── Renderer │ │ ├── CommonShaderReflection.cpp │ │ ├── Direct3D11 │ │ │ ├── Direct3D11.cpp │ │ │ ├── Direct3D11CapBuilder.h │ │ │ ├── Direct3D11Commands.h │ │ │ ├── Direct3D11Raytracing.cpp │ │ │ └── Direct3D11ShaderReflection.cpp │ │ ├── Direct3D12 │ │ │ ├── Direct3D12.cpp │ │ │ ├── Direct3D12CapBuilder.h │ │ │ ├── Direct3D12Hooks.cpp │ │ │ ├── Direct3D12Hooks.h │ │ │ ├── Direct3D12Raytracing.cpp │ │ │ └── Direct3D12ShaderReflection.cpp │ │ ├── IRay.h │ │ ├── IRenderer.h │ │ ├── IResourceLoader.h │ │ ├── IShaderReflection.h │ │ ├── Metal │ │ │ ├── MetalAvailabilityMacros.h │ │ │ ├── MetalCapBuilder.h │ │ │ ├── MetalMemoryAllocator.h │ │ │ ├── MetalMemoryAllocatorImpl.h │ │ │ ├── MetalRaytracing.mm │ │ │ ├── MetalRenderer.mm │ │ │ └── MetalShaderReflection.mm │ │ ├── OpenGLES │ │ │ ├── EGLContextCreator.cpp │ │ │ ├── GLES.cpp │ │ │ ├── GLESCapsBuilder.h │ │ │ ├── GLESContextCreator.h │ │ │ └── GLESShaderReflection.cpp │ │ ├── ResourceLoader.cpp │ │ └── Vulkan │ │ │ ├── Vulkan.cpp │ │ │ ├── VulkanCapsBuilder.h │ │ │ ├── VulkanRaytracing.cpp │ │ │ └── VulkanShaderReflection.cpp │ ├── ThirdParty │ │ └── OpenSource │ │ │ ├── D3D12MemoryAllocator │ │ │ ├── CHANGELOG.md │ │ │ ├── D3D12MemoryAllocator.natvis │ │ │ ├── Direct3D12MemoryAllocator.h │ │ │ ├── LICENSE.txt │ │ │ ├── NOTICES.txt │ │ │ └── README.md │ │ │ ├── DirectXShaderCompiler │ │ │ ├── bin │ │ │ │ └── x64 │ │ │ │ │ ├── dxc.exe │ │ │ │ │ ├── dxcompiler.dll │ │ │ │ │ └── dxil.dll │ │ │ ├── inc │ │ │ │ ├── d3d12shader.h │ │ │ │ └── dxcapi.h │ │ │ └── lib │ │ │ │ └── x64 │ │ │ │ └── dxcompiler.lib │ │ │ ├── EASTL │ │ │ ├── .clang-format │ │ │ ├── 3RDPARTYLICENSES.TXT │ │ │ ├── CONTRIBUTING.md │ │ │ ├── EAAssert │ │ │ │ └── eaassert.h │ │ │ ├── EABase │ │ │ │ ├── .gitignore │ │ │ │ ├── config │ │ │ │ │ ├── eacompiler.h │ │ │ │ │ ├── eacompilertraits.h │ │ │ │ │ └── eaplatform.h │ │ │ │ ├── eabase.h │ │ │ │ ├── eahave.h │ │ │ │ ├── earesult.h │ │ │ │ ├── eastdarg.h │ │ │ │ ├── eaunits.h │ │ │ │ ├── int128.h │ │ │ │ ├── nullptr.h │ │ │ │ └── version.h │ │ │ ├── EASTL.natvis │ │ │ ├── EAStdC │ │ │ │ ├── EAAlignment.h │ │ │ │ ├── EADateTime.h │ │ │ │ ├── EAMemory.cpp │ │ │ │ ├── EAMemory.h │ │ │ │ ├── EAProcess.h │ │ │ │ ├── EASprintf.cpp │ │ │ │ ├── EASprintf.h │ │ │ │ ├── EAStopwatch.h │ │ │ │ ├── EAString.h │ │ │ │ └── EATextUtil.h │ │ │ ├── LICENSE │ │ │ ├── Linux │ │ │ │ └── EASTL.project │ │ │ ├── README.md │ │ │ ├── algorithm.h │ │ │ ├── allocator.h │ │ │ ├── allocator_eastl.cpp │ │ │ ├── allocator_forge.cpp │ │ │ ├── allocator_forge.h │ │ │ ├── allocator_malloc.h │ │ │ ├── any.h │ │ │ ├── array.h │ │ │ ├── assert.cpp │ │ │ ├── bitset.h │ │ │ ├── bitvector.h │ │ │ ├── bonus │ │ │ │ ├── adaptors.h │ │ │ │ ├── call_traits.h │ │ │ │ ├── compressed_pair.h │ │ │ │ ├── fixed_ring_buffer.h │ │ │ │ ├── fixed_tuple_vector.h │ │ │ │ ├── intrusive_sdlist.h │ │ │ │ ├── intrusive_slist.h │ │ │ │ ├── list_map.h │ │ │ │ ├── lru_cache.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── sort_extra.h │ │ │ │ ├── sparse_matrix.h │ │ │ │ └── tuple_vector.h │ │ │ ├── chrono.h │ │ │ ├── core_allocator.h │ │ │ ├── core_allocator_adapter.h │ │ │ ├── deque.h │ │ │ ├── eastl.cpp │ │ │ ├── fixed_allocator.h │ │ │ ├── fixed_function.h │ │ │ ├── fixed_hash_map.h │ │ │ ├── fixed_hash_set.h │ │ │ ├── fixed_list.h │ │ │ ├── fixed_map.h │ │ │ ├── fixed_pool.cpp │ │ │ ├── fixed_set.h │ │ │ ├── fixed_slist.h │ │ │ ├── fixed_string.h │ │ │ ├── fixed_substring.h │ │ │ ├── fixed_vector.h │ │ │ ├── functional.h │ │ │ ├── hash_map.h │ │ │ ├── hash_set.h │ │ │ ├── hashtable.cpp │ │ │ ├── heap.h │ │ │ ├── initializer_list.h │ │ │ ├── internal │ │ │ │ ├── allocator_traits.h │ │ │ │ ├── allocator_traits_fwd_decls.h │ │ │ │ ├── char_traits.h │ │ │ │ ├── config.h │ │ │ │ ├── copy_help.h │ │ │ │ ├── enable_shared.h │ │ │ │ ├── fill_help.h │ │ │ │ ├── fixed_pool.h │ │ │ │ ├── function.h │ │ │ │ ├── function_detail.h │ │ │ │ ├── function_help.h │ │ │ │ ├── functional_base.h │ │ │ │ ├── generic_iterator.h │ │ │ │ ├── hashtable.h │ │ │ │ ├── in_place_t.h │ │ │ │ ├── integer_sequence.h │ │ │ │ ├── intrusive_hashtable.h │ │ │ │ ├── mem_fn.h │ │ │ │ ├── memory_base.h │ │ │ │ ├── meta.h │ │ │ │ ├── move_help.h │ │ │ │ ├── pair_fwd_decls.h │ │ │ │ ├── piecewise_construct_t.h │ │ │ │ ├── red_black_tree.h │ │ │ │ ├── smart_ptr.h │ │ │ │ ├── thread_support.h │ │ │ │ ├── tuple_fwd_decls.h │ │ │ │ ├── type_compound.h │ │ │ │ ├── type_fundamental.h │ │ │ │ ├── type_pod.h │ │ │ │ ├── type_properties.h │ │ │ │ └── type_transformations.h │ │ │ ├── intrusive_hash_map.h │ │ │ ├── intrusive_hash_set.h │ │ │ ├── intrusive_list.cpp │ │ │ ├── intrusive_list.h │ │ │ ├── intrusive_ptr.h │ │ │ ├── iterator.h │ │ │ ├── linked_array.h │ │ │ ├── linked_ptr.h │ │ │ ├── list.h │ │ │ ├── map.h │ │ │ ├── memory.h │ │ │ ├── meta.h │ │ │ ├── numeric.h │ │ │ ├── numeric_limits.cpp │ │ │ ├── numeric_limits.h │ │ │ ├── optional.h │ │ │ ├── priority_queue.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── ratio.h │ │ │ ├── red_black_tree.cpp │ │ │ ├── safe_ptr.h │ │ │ ├── scoped_array.h │ │ │ ├── scoped_ptr.h │ │ │ ├── segmented_vector.h │ │ │ ├── set.h │ │ │ ├── shared_array.h │ │ │ ├── shared_ptr.h │ │ │ ├── slist.h │ │ │ ├── sort.h │ │ │ ├── span.h │ │ │ ├── stack.h │ │ │ ├── string.cpp │ │ │ ├── string.h │ │ │ ├── string_hash_map.h │ │ │ ├── string_map.h │ │ │ ├── string_view.h │ │ │ ├── thread_support.cpp │ │ │ ├── tuple.h │ │ │ ├── type_traits.h │ │ │ ├── unique_ptr.h │ │ │ ├── unordered_map.h │ │ │ ├── unordered_set.h │ │ │ ├── utility.h │ │ │ ├── variant.h │ │ │ ├── vector.h │ │ │ ├── vector_map.h │ │ │ ├── vector_multimap.h │ │ │ ├── vector_multiset.h │ │ │ ├── vector_set.h │ │ │ ├── version.h │ │ │ └── weak_ptr.h │ │ │ ├── FluidStudios │ │ │ └── MemoryManager │ │ │ │ ├── mmgr.cpp │ │ │ │ ├── mmgr.h │ │ │ │ ├── nommgr.h │ │ │ │ └── readme.txt │ │ │ ├── Fontstash │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── example │ │ │ │ ├── error.c │ │ │ │ └── example.c │ │ │ └── src │ │ │ │ ├── fontstash.h │ │ │ │ ├── gl3corefontstash.h │ │ │ │ ├── glfontstash.h │ │ │ │ └── stb_truetype.h │ │ │ ├── ModifiedSonyMath │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── common.hpp │ │ │ ├── docs │ │ │ │ └── VectorMath-Library-Overview.pdf │ │ │ ├── neon │ │ │ │ ├── boolinvec.hpp │ │ │ │ ├── floatinvec.hpp │ │ │ │ ├── internal.hpp │ │ │ │ ├── matrix.hpp │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── sse2neon.h │ │ │ │ ├── vecidx.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vectormath.hpp │ │ │ ├── scalar │ │ │ │ ├── matrix.hpp │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vectormath.hpp │ │ │ ├── soa │ │ │ │ ├── float.hpp │ │ │ │ ├── float4x4.hpp │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── soa.hpp │ │ │ │ └── transform.hpp │ │ │ ├── sse │ │ │ │ ├── boolinvec.hpp │ │ │ │ ├── floatinvec.hpp │ │ │ │ ├── internal.hpp │ │ │ │ ├── matrix.hpp │ │ │ │ ├── quaternion.hpp │ │ │ │ ├── vecidx.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vectormath.hpp │ │ │ ├── vec2d.hpp │ │ │ └── vectormath.hpp │ │ │ ├── Nothings │ │ │ ├── stb_hash.h │ │ │ ├── stb_image.h │ │ │ ├── stb_image_resize.h │ │ │ ├── stb_image_write.h │ │ │ ├── stb_rect_pack.h │ │ │ ├── stb_textedit.h │ │ │ └── stb_truetype.h │ │ │ ├── OpenGL │ │ │ ├── GL │ │ │ │ ├── glcorearb.h │ │ │ │ ├── glext.h │ │ │ │ ├── glxext.h │ │ │ │ ├── wgl.h │ │ │ │ └── wglext.h │ │ │ ├── GLES │ │ │ │ ├── 1.0 │ │ │ │ │ └── gl.h │ │ │ │ ├── egl.h │ │ │ │ ├── gl.h │ │ │ │ ├── glext.h │ │ │ │ └── glplatform.h │ │ │ └── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── SPIRV_Cross │ │ │ ├── GLSL.std.450.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── spirv.h │ │ │ ├── spirv.hpp │ │ │ ├── spirv_cfg.cpp │ │ │ ├── spirv_cfg.hpp │ │ │ ├── spirv_common.hpp │ │ │ ├── spirv_cpp.cpp │ │ │ ├── spirv_cpp.hpp │ │ │ ├── spirv_cross.cpp │ │ │ ├── spirv_cross.hpp │ │ │ ├── spirv_cross_containers.hpp │ │ │ ├── spirv_cross_error_handling.hpp │ │ │ ├── spirv_cross_parsed_ir.cpp │ │ │ ├── spirv_cross_parsed_ir.hpp │ │ │ ├── spirv_cross_util.cpp │ │ │ ├── spirv_cross_util.hpp │ │ │ ├── spirv_glsl.cpp │ │ │ ├── spirv_glsl.hpp │ │ │ ├── spirv_hlsl.cpp │ │ │ ├── spirv_hlsl.hpp │ │ │ ├── spirv_msl.cpp │ │ │ ├── spirv_msl.hpp │ │ │ ├── spirv_parser.cpp │ │ │ ├── spirv_parser.hpp │ │ │ ├── spirv_reflect.cpp │ │ │ └── spirv_reflect.hpp │ │ │ ├── TaskScheduler │ │ │ ├── README.md │ │ │ ├── Scheduler │ │ │ │ ├── Include │ │ │ │ │ ├── MTAppInterop.h │ │ │ │ │ ├── MTArrayView.h │ │ │ │ │ ├── MTAtomic.h │ │ │ │ │ ├── MTColorTable.h │ │ │ │ │ ├── MTConcurrentRingBuffer.h │ │ │ │ │ ├── MTConfig.h │ │ │ │ │ ├── MTDebug.h │ │ │ │ │ ├── MTFiberContext.h │ │ │ │ │ ├── MTFiberContext.inl │ │ │ │ │ ├── MTGroupedTask.h │ │ │ │ │ ├── MTPlatform.h │ │ │ │ │ ├── MTProfilerEventListener.h │ │ │ │ │ ├── MTQueueMPMC.h │ │ │ │ │ ├── MTScheduler.h │ │ │ │ │ ├── MTScheduler.inl │ │ │ │ │ ├── MTStackRequirements.h │ │ │ │ │ ├── MTStaticVector.h │ │ │ │ │ ├── MTTaskBucket.h │ │ │ │ │ ├── MTTaskDesc.h │ │ │ │ │ ├── MTTaskGroup.h │ │ │ │ │ ├── MTTaskPool.h │ │ │ │ │ ├── MTTaskQueue.h │ │ │ │ │ ├── MTThreadContext.h │ │ │ │ │ ├── MTTools.h │ │ │ │ │ ├── MTTypes.h │ │ │ │ │ ├── Platform │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── MTAtomic.h │ │ │ │ │ │ │ ├── MTSpinWait.h │ │ │ │ │ │ │ └── MTThread.h │ │ │ │ │ │ ├── Posix │ │ │ │ │ │ │ ├── MTAtomic.h │ │ │ │ │ │ │ ├── MTCommon.h │ │ │ │ │ │ │ ├── MTEvent.h │ │ │ │ │ │ │ ├── MTFiber.h │ │ │ │ │ │ │ ├── MTMemory.h │ │ │ │ │ │ │ ├── MTMutex.h │ │ │ │ │ │ │ ├── MTThread.h │ │ │ │ │ │ │ └── MTUtils.h │ │ │ │ │ │ └── Windows │ │ │ │ │ │ │ ├── MTAtomic.h │ │ │ │ │ │ │ ├── MTCommon.h │ │ │ │ │ │ │ ├── MTEvent.h │ │ │ │ │ │ │ ├── MTEventKernel.h │ │ │ │ │ │ │ ├── MTEventUser.h │ │ │ │ │ │ │ ├── MTFiber.h │ │ │ │ │ │ │ ├── MTFiberDefault.h │ │ │ │ │ │ │ ├── MTFiberOptimized.h │ │ │ │ │ │ │ ├── MTMemory.h │ │ │ │ │ │ │ ├── MTMutex.h │ │ │ │ │ │ │ ├── MTThread.h │ │ │ │ │ │ │ ├── MTUtils.h │ │ │ │ │ │ │ ├── MicroWindows.cpp │ │ │ │ │ │ │ └── MicroWindows.h │ │ │ │ │ └── Scopes │ │ │ │ │ │ └── MTScopes.h │ │ │ │ └── Source │ │ │ │ │ ├── MTDefaultAppInterop.cpp │ │ │ │ │ ├── MTFiberContext.cpp │ │ │ │ │ ├── MTScheduler.cpp │ │ │ │ │ └── MTThreadContext.cpp │ │ │ ├── ThirdParty │ │ │ │ └── Boost.Context │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ ├── asm │ │ │ │ │ ├── jump_arm64_aapcs_elf_gas.S │ │ │ │ │ ├── jump_arm64_aapcs_macho_gas.S │ │ │ │ │ ├── jump_arm_aapcs_elf_gas.S │ │ │ │ │ ├── jump_arm_aapcs_macho_gas.S │ │ │ │ │ ├── jump_arm_aapcs_pe_armasm.asm │ │ │ │ │ ├── jump_combined_sysv_macho_gas.S │ │ │ │ │ ├── jump_i386_ms_pe_gas.asm │ │ │ │ │ ├── jump_i386_ms_pe_masm.asm │ │ │ │ │ ├── jump_i386_sysv_elf_gas.S │ │ │ │ │ ├── jump_i386_sysv_macho_gas.S │ │ │ │ │ ├── jump_i386_x86_64_sysv_macho_gas.S │ │ │ │ │ ├── jump_mips32_o32_elf_gas.S │ │ │ │ │ ├── jump_ppc32_ppc64_sysv_macho_gas.S │ │ │ │ │ ├── jump_ppc32_sysv_elf_gas.S │ │ │ │ │ ├── jump_ppc32_sysv_macho_gas.S │ │ │ │ │ ├── jump_ppc32_sysv_xcoff_gas.S │ │ │ │ │ ├── jump_ppc64_sysv_elf_gas.S │ │ │ │ │ ├── jump_ppc64_sysv_macho_gas.S │ │ │ │ │ ├── jump_ppc64_sysv_xcoff_gas.S │ │ │ │ │ ├── jump_sparc64_sysv_elf_gas.S │ │ │ │ │ ├── jump_sparc_sysv_elf_gas.S │ │ │ │ │ ├── jump_x86_64_ms_pe_gas.asm │ │ │ │ │ ├── jump_x86_64_ms_pe_masm.asm │ │ │ │ │ ├── jump_x86_64_sysv_elf_gas.S │ │ │ │ │ ├── jump_x86_64_sysv_macho_gas.S │ │ │ │ │ ├── make_arm64_aapcs_elf_gas.S │ │ │ │ │ ├── make_arm64_aapcs_macho_gas.S │ │ │ │ │ ├── make_arm_aapcs_elf_gas.S │ │ │ │ │ ├── make_arm_aapcs_macho_gas.S │ │ │ │ │ ├── make_arm_aapcs_pe_armasm.asm │ │ │ │ │ ├── make_combined_sysv_macho_gas.S │ │ │ │ │ ├── make_i386_ms_pe_gas.asm │ │ │ │ │ ├── make_i386_ms_pe_masm.asm │ │ │ │ │ ├── make_i386_sysv_elf_gas.S │ │ │ │ │ ├── make_i386_sysv_macho_gas.S │ │ │ │ │ ├── make_i386_x86_64_sysv_macho_gas.S │ │ │ │ │ ├── make_mips32_o32_elf_gas.S │ │ │ │ │ ├── make_ppc32_ppc64_sysv_macho_gas.S │ │ │ │ │ ├── make_ppc32_sysv_elf_gas.S │ │ │ │ │ ├── make_ppc32_sysv_macho_gas.S │ │ │ │ │ ├── make_ppc32_sysv_xcoff_gas.S │ │ │ │ │ ├── make_ppc64_sysv_elf_gas.S │ │ │ │ │ ├── make_ppc64_sysv_macho_gas.S │ │ │ │ │ ├── make_ppc64_sysv_xcoff_gas.S │ │ │ │ │ ├── make_sparc64_sysv_elf_gas.S │ │ │ │ │ ├── make_sparc_sysv_elf_gas.S │ │ │ │ │ ├── make_x86_64_ms_pe_gas.asm │ │ │ │ │ ├── make_x86_64_ms_pe_masm.asm │ │ │ │ │ ├── make_x86_64_sysv_elf_gas.S │ │ │ │ │ └── make_x86_64_sysv_macho_gas.S │ │ │ │ │ └── fcontext.h │ │ │ └── license.txt │ │ │ ├── TinyEXR │ │ │ ├── LICENSE │ │ │ ├── tinyexr.cpp │ │ │ └── tinyexr.h │ │ │ ├── TinyXML2 │ │ │ ├── tinyxml2.cpp │ │ │ └── tinyxml2.h │ │ │ ├── TressFX │ │ │ ├── TressFXAsset.cpp │ │ │ ├── TressFXAsset.h │ │ │ └── TressFXFileFormat.h │ │ │ ├── VulkanMemoryAllocator │ │ │ └── VulkanMemoryAllocator.h │ │ │ ├── ags │ │ │ ├── AgsHelper.h │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── ags_lib │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── doc │ │ │ │ │ ├── README.txt │ │ │ │ │ └── amd_ags.chm │ │ │ │ ├── hlsl │ │ │ │ │ ├── ags_shader_intrinsics_dx11.hlsl │ │ │ │ │ └── ags_shader_intrinsics_dx12.hlsl │ │ │ │ ├── inc │ │ │ │ │ └── amd_ags.h │ │ │ │ └── lib │ │ │ │ │ ├── amd_ags_x64.dll │ │ │ │ │ ├── amd_ags_x64.lib │ │ │ │ │ ├── amd_ags_x86.dll │ │ │ │ │ └── amd_ags_x86.lib │ │ │ └── ags_sample │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ └── AGSSample.cpp │ │ │ ├── basis_universal │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── basisu.sln │ │ │ ├── basisu.vcxproj │ │ │ ├── basisu.vcxproj.filters │ │ │ ├── basisu_astc_decomp.cpp │ │ │ ├── basisu_astc_decomp.h │ │ │ ├── basisu_backend.cpp │ │ │ ├── basisu_backend.h │ │ │ ├── basisu_basis_file.cpp │ │ │ ├── basisu_basis_file.h │ │ │ ├── basisu_comp.cpp │ │ │ ├── basisu_comp.h │ │ │ ├── basisu_enc.cpp │ │ │ ├── basisu_enc.h │ │ │ ├── basisu_etc.cpp │ │ │ ├── basisu_etc.h │ │ │ ├── basisu_frontend.cpp │ │ │ ├── basisu_frontend.h │ │ │ ├── basisu_global_selector_palette_helpers.cpp │ │ │ ├── basisu_global_selector_palette_helpers.h │ │ │ ├── basisu_gpu_texture.cpp │ │ │ ├── basisu_gpu_texture.h │ │ │ ├── basisu_pvrtc1_4.cpp │ │ │ ├── basisu_pvrtc1_4.h │ │ │ ├── basisu_resample_filters.cpp │ │ │ ├── basisu_resampler.cpp │ │ │ ├── basisu_resampler.h │ │ │ ├── basisu_resampler_filters.h │ │ │ ├── basisu_ssim.cpp │ │ │ ├── basisu_ssim.h │ │ │ ├── basisu_tool.cpp │ │ │ ├── build_clang.sh │ │ │ ├── contrib │ │ │ │ └── previewers │ │ │ │ │ ├── lib │ │ │ │ │ ├── basisu_transcoder.cpp │ │ │ │ │ └── basisu_transcoder.h │ │ │ │ │ └── win │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── basisthumbprovider.cpp │ │ │ │ │ ├── basisthumbprovider.h │ │ │ │ │ ├── helpers.cpp │ │ │ │ │ ├── helpers.h │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── previewers.cpp │ │ │ │ │ ├── previewers.def │ │ │ │ │ ├── previewers.sln │ │ │ │ │ ├── previewers.vcxproj │ │ │ │ │ └── previewers.vcxproj.filters │ │ │ ├── encoder_lvl_vs_perf.png │ │ │ ├── lodepng.cpp │ │ │ ├── lodepng.h │ │ │ ├── transcoder │ │ │ │ ├── basisu.h │ │ │ │ ├── basisu_file_headers.h │ │ │ │ ├── basisu_global_selector_cb.h │ │ │ │ ├── basisu_global_selector_palette.h │ │ │ │ ├── basisu_transcoder.cpp │ │ │ │ ├── basisu_transcoder.h │ │ │ │ ├── basisu_transcoder_internal.h │ │ │ │ ├── basisu_transcoder_tables_astc.inc │ │ │ │ ├── basisu_transcoder_tables_astc_0_255.inc │ │ │ │ ├── basisu_transcoder_tables_atc_55.inc │ │ │ │ ├── basisu_transcoder_tables_atc_56.inc │ │ │ │ ├── basisu_transcoder_tables_bc7_m5_alpha.inc │ │ │ │ ├── basisu_transcoder_tables_bc7_m5_color.inc │ │ │ │ ├── basisu_transcoder_tables_bc7_m6.inc │ │ │ │ ├── basisu_transcoder_tables_dxt1_5.inc │ │ │ │ ├── basisu_transcoder_tables_dxt1_6.inc │ │ │ │ ├── basisu_transcoder_tables_pvrtc2_45.inc │ │ │ │ └── basisu_transcoder_tables_pvrtc2_alpha_33.inc │ │ │ ├── webgl │ │ │ │ ├── README.md │ │ │ │ ├── gltf │ │ │ │ │ ├── BasisTextureLoader.js │ │ │ │ │ ├── GLTFLoader.js │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── AgiHqSmall.gltf │ │ │ │ │ │ └── textureAtlasImage.basis │ │ │ │ │ ├── index.html │ │ │ │ │ └── preview.png │ │ │ │ ├── index.html │ │ │ │ ├── texture │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── alpha3.basis │ │ │ │ │ │ └── kodim20.basis │ │ │ │ │ ├── dxt-to-rgb565.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── preview.png │ │ │ │ │ └── renderer.js │ │ │ │ └── transcoder │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ └── basis_wrappers.cpp │ │ │ └── webgl_videotest │ │ │ │ ├── basis.js │ │ │ │ ├── basis.js.mem │ │ │ │ ├── basis_wrappers.cpp │ │ │ │ ├── build.bat │ │ │ │ ├── build.sh │ │ │ │ ├── dxt-to-rgb565.js │ │ │ │ ├── index.html │ │ │ │ ├── kodim01.basis │ │ │ │ ├── kodim18.basis │ │ │ │ ├── kodim20.basis │ │ │ │ └── renderer.js │ │ │ ├── cgltf │ │ │ ├── GLTFLoader.h │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cgltf.h │ │ │ └── cgltf_write.h │ │ │ ├── gainput │ │ │ ├── .appveyor.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Apple │ │ │ │ ├── Project.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ └── lib │ │ │ │ │ └── gainput.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── CMakeLists.txt │ │ │ ├── Doxyfile │ │ │ ├── LICENSE │ │ │ ├── Orbis │ │ │ │ └── lib │ │ │ │ │ ├── gainputstatic.vcxproj │ │ │ │ │ └── gainputstatic.vcxproj.filters │ │ │ ├── Prospero │ │ │ │ └── lib │ │ │ │ │ ├── gainputstatic.vcxproj │ │ │ │ │ └── gainputstatic.vcxproj.filters │ │ │ ├── README.md │ │ │ ├── Ubuntu │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 3.10.2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ └── CMakeCCompilerId.c │ │ │ │ │ │ └── CompilerIdCXX │ │ │ │ │ │ │ └── CMakeCXXCompilerId.cpp │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── Makefile.cmake │ │ │ │ │ ├── Makefile2 │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ ├── feature_tests.c │ │ │ │ │ ├── feature_tests.cxx │ │ │ │ │ └── progress.marks │ │ │ │ ├── Makefile │ │ │ │ ├── Project.project │ │ │ │ ├── Project.workspace │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── lib │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ │ ├── gainput.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ ├── gainputstatic.dir │ │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ │ ├── build.make │ │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ │ │ ├── depend.make │ │ │ │ │ │ ├── flags.make │ │ │ │ │ │ ├── link.txt │ │ │ │ │ │ └── progress.make │ │ │ │ │ └── progress.marks │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── gainput.project │ │ │ ├── Win64 │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ ├── CMakeCache.txt │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── 015aeeede9e53a6c691c3d4c63ce1527 │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 3.11.2 │ │ │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ │ │ ├── CMakeRCCompiler.cmake │ │ │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ │ │ ├── CompilerIdC │ │ │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ │ │ └── CompilerIdC.vcxproj │ │ │ │ │ │ ├── CompilerIdCXX │ │ │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ │ │ └── CompilerIdCXX.vcxproj │ │ │ │ │ │ ├── VCTargetsPath.txt │ │ │ │ │ │ └── VCTargetsPath.vcxproj │ │ │ │ │ ├── 56197094a3286c39cefa08f61a884e93 │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 56528ad92869db12f12ae104125ecd6a │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 5e6c525a79d5f831db03de8e4587593d │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 69c0271919f719a5c73e1f1ab46a4ddb │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 7a2fbd16fec7f94f853bb4871c9399f7 │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 7ca26b6d628846c54feb4e6174538a2d │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── 83308563b96df5b02c9e40ccd205b381 │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── TargetDirectories.txt │ │ │ │ │ ├── b1bb06226f7187b8e7664743dc5bbd54 │ │ │ │ │ │ └── INSTALL_force.rule │ │ │ │ │ ├── cmake.check_cache │ │ │ │ │ ├── e61dd026094efd9119be0f25a2932cf7 │ │ │ │ │ │ ├── INSTALL_force.rule │ │ │ │ │ │ └── generate.stamp.rule │ │ │ │ │ ├── feature_tests.cxx │ │ │ │ │ ├── generate.stamp │ │ │ │ │ ├── generate.stamp.depend │ │ │ │ │ └── generate.stamp.list │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ ├── Project.sln │ │ │ │ ├── ZERO_CHECK.vcxproj │ │ │ │ ├── ZERO_CHECK.vcxproj.filters │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── lib │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── gainput.vcxproj │ │ │ │ │ ├── gainput.vcxproj.filters │ │ │ │ │ ├── gainputstatic.vcxproj │ │ │ │ │ └── gainputstatic.vcxproj.filters │ │ │ │ ├── samples │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── basicsample.sln │ │ │ │ │ │ ├── basicsample.vcxproj │ │ │ │ │ │ ├── basicsample.vcxproj.filters │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── dynamic │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── dynamicsample.sln │ │ │ │ │ │ ├── dynamicsample.vcxproj │ │ │ │ │ │ └── dynamicsample.vcxproj.filters │ │ │ │ │ ├── gesture │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── gesturesample.sln │ │ │ │ │ │ ├── gesturesample.vcxproj │ │ │ │ │ │ └── gesturesample.vcxproj.filters │ │ │ │ │ ├── listener │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── listenersample.sln │ │ │ │ │ │ ├── listenersample.vcxproj │ │ │ │ │ │ └── listenersample.vcxproj.filters │ │ │ │ │ ├── recording │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── recordingsample.sln │ │ │ │ │ │ ├── recordingsample.vcxproj │ │ │ │ │ │ └── recordingsample.vcxproj.filters │ │ │ │ │ └── sync │ │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ │ ├── generate.stamp │ │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── syncsample.sln │ │ │ │ │ │ ├── syncsample.vcxproj │ │ │ │ │ │ └── syncsample.vcxproj.filters │ │ │ │ └── test │ │ │ │ │ ├── ALL_BUILD.vcxproj │ │ │ │ │ ├── ALL_BUILD.vcxproj.filters │ │ │ │ │ ├── CMakeFiles │ │ │ │ │ ├── generate.stamp │ │ │ │ │ └── generate.stamp.depend │ │ │ │ │ ├── INSTALL.vcxproj │ │ │ │ │ ├── INSTALL.vcxproj.filters │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── gainputtest.sln │ │ │ │ │ ├── gainputtest.vcxproj │ │ │ │ │ └── gainputtest.vcxproj.filters │ │ │ ├── build.gradle │ │ │ ├── extern │ │ │ │ ├── android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── res │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── catch │ │ │ │ │ └── catch.hpp │ │ │ │ ├── cmake │ │ │ │ │ ├── AndroidNdkModules.cmake │ │ │ │ │ ├── android.toolchain.cmake │ │ │ │ │ └── iOS.cmake │ │ │ │ └── ios │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Launch Screen.storyboard │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── gainput │ │ │ │ │ │ ├── GainputAllocator.h │ │ │ │ │ │ ├── GainputContainers.h │ │ │ │ │ │ ├── GainputDebugRenderer.h │ │ │ │ │ │ ├── GainputHelpers.h │ │ │ │ │ │ ├── GainputInputDeltaState.h │ │ │ │ │ │ ├── GainputInputDevice.h │ │ │ │ │ │ ├── GainputInputDeviceBuiltIn.h │ │ │ │ │ │ ├── GainputInputDeviceKeyboard.h │ │ │ │ │ │ ├── GainputInputDeviceMouse.h │ │ │ │ │ │ ├── GainputInputDevicePad.h │ │ │ │ │ │ ├── GainputInputDeviceTouch.h │ │ │ │ │ │ ├── GainputInputListener.h │ │ │ │ │ │ ├── GainputInputManager.h │ │ │ │ │ │ ├── GainputInputMap.h │ │ │ │ │ │ ├── GainputInputState.h │ │ │ │ │ │ ├── GainputIos.h │ │ │ │ │ │ ├── GainputLog.h │ │ │ │ │ │ ├── GainputMac.h │ │ │ │ │ │ ├── GainputMapFilters.h │ │ │ │ │ │ ├── gainput.h │ │ │ │ │ │ ├── gestures │ │ │ │ │ │ ├── GainputButtonStickGesture.h │ │ │ │ │ │ ├── GainputDoubleClickGesture.h │ │ │ │ │ │ ├── GainputGestures.h │ │ │ │ │ │ ├── GainputHoldGesture.h │ │ │ │ │ │ ├── GainputPinchGesture.h │ │ │ │ │ │ ├── GainputRotateGesture.h │ │ │ │ │ │ ├── GainputSimultaneouslyDownGesture.h │ │ │ │ │ │ └── GainputTapGesture.h │ │ │ │ │ │ └── recorder │ │ │ │ │ │ ├── GainputInputPlayer.h │ │ │ │ │ │ ├── GainputInputRecorder.h │ │ │ │ │ │ └── GainputInputRecording.h │ │ │ │ ├── java │ │ │ │ │ ├── com │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── gainput │ │ │ │ │ │ │ └── gainput │ │ │ │ │ │ │ └── BasicActivity.java │ │ │ │ │ └── de │ │ │ │ │ │ └── johanneskuhlmann │ │ │ │ │ │ └── gainput │ │ │ │ │ │ └── Gainput.java │ │ │ │ └── source │ │ │ │ │ └── gainput │ │ │ │ │ ├── GainputAllocator.cpp │ │ │ │ │ ├── GainputHelpersEvdev.h │ │ │ │ │ ├── GainputInputDeltaState.cpp │ │ │ │ │ ├── GainputInputDevice.cpp │ │ │ │ │ ├── GainputInputManager.cpp │ │ │ │ │ ├── GainputInputMap.cpp │ │ │ │ │ ├── GainputInputState.cpp │ │ │ │ │ ├── GainputIos.mm │ │ │ │ │ ├── GainputMac.mm │ │ │ │ │ ├── GainputMapFilters.cpp │ │ │ │ │ ├── GainputWindows.h │ │ │ │ │ ├── builtin │ │ │ │ │ ├── GainputInputDeviceBuiltIn.cpp │ │ │ │ │ ├── GainputInputDeviceBuiltInAndroid.h │ │ │ │ │ ├── GainputInputDeviceBuiltInImpl.h │ │ │ │ │ ├── GainputInputDeviceBuiltInIos.h │ │ │ │ │ ├── GainputInputDeviceBuiltInIos.mm │ │ │ │ │ └── GainputInputDeviceBuiltInNull.h │ │ │ │ │ ├── dev │ │ │ │ │ ├── GainputDev.cpp │ │ │ │ │ ├── GainputDev.h │ │ │ │ │ ├── GainputDevProtocol.h │ │ │ │ │ ├── GainputMemoryStream.cpp │ │ │ │ │ ├── GainputMemoryStream.h │ │ │ │ │ ├── GainputNetAddress.cpp │ │ │ │ │ ├── GainputNetAddress.h │ │ │ │ │ ├── GainputNetConnection.cpp │ │ │ │ │ ├── GainputNetConnection.h │ │ │ │ │ ├── GainputNetListener.cpp │ │ │ │ │ ├── GainputNetListener.h │ │ │ │ │ └── GainputStream.h │ │ │ │ │ ├── gainput.cpp │ │ │ │ │ ├── gestures │ │ │ │ │ ├── GainputButtonStickGesture.cpp │ │ │ │ │ ├── GainputDoubleClickGesture.cpp │ │ │ │ │ ├── GainputHoldGesture.cpp │ │ │ │ │ ├── GainputPinchGesture.cpp │ │ │ │ │ ├── GainputRotateGesture.cpp │ │ │ │ │ ├── GainputSimultaneouslyDownGesture.cpp │ │ │ │ │ └── GainputTapGesture.cpp │ │ │ │ │ ├── keyboard │ │ │ │ │ ├── GainputInputDeviceKeyboard.cpp │ │ │ │ │ ├── GainputInputDeviceKeyboardAndroid.h │ │ │ │ │ ├── GainputInputDeviceKeyboardEvdev.h │ │ │ │ │ ├── GainputInputDeviceKeyboardIOS.h │ │ │ │ │ ├── GainputInputDeviceKeyboardImpl.h │ │ │ │ │ ├── GainputInputDeviceKeyboardLinux.h │ │ │ │ │ ├── GainputInputDeviceKeyboardMac.cpp │ │ │ │ │ ├── GainputInputDeviceKeyboardMac.h │ │ │ │ │ ├── GainputInputDeviceKeyboardNull.h │ │ │ │ │ ├── GainputInputDeviceKeyboardWin.h │ │ │ │ │ ├── GainputInputDeviceKeyboardWinRaw.h │ │ │ │ │ └── GainputKeyboardKeyNames.h │ │ │ │ │ ├── mouse │ │ │ │ │ ├── GainputInputDeviceMouse.cpp │ │ │ │ │ ├── GainputInputDeviceMouseEvdev.h │ │ │ │ │ ├── GainputInputDeviceMouseImpl.h │ │ │ │ │ ├── GainputInputDeviceMouseLinux.h │ │ │ │ │ ├── GainputInputDeviceMouseLinuxRaw.h │ │ │ │ │ ├── GainputInputDeviceMouseMac.h │ │ │ │ │ ├── GainputInputDeviceMouseMac.mm │ │ │ │ │ ├── GainputInputDeviceMouseMacRaw.h │ │ │ │ │ ├── GainputInputDeviceMouseMacRaw.mm │ │ │ │ │ ├── GainputInputDeviceMouseNull.h │ │ │ │ │ ├── GainputInputDeviceMouseWin.h │ │ │ │ │ ├── GainputInputDeviceMouseWinRaw.h │ │ │ │ │ └── GainputMouseInfo.h │ │ │ │ │ ├── pad │ │ │ │ │ ├── GainputControllerDb.h │ │ │ │ │ ├── GainputInputDevicePad.cpp │ │ │ │ │ ├── GainputInputDevicePadAndroid.h │ │ │ │ │ ├── GainputInputDevicePadImpl.h │ │ │ │ │ ├── GainputInputDevicePadIos.h │ │ │ │ │ ├── GainputInputDevicePadIos.mm │ │ │ │ │ ├── GainputInputDevicePadLinux.h │ │ │ │ │ ├── GainputInputDevicePadMac.cpp │ │ │ │ │ ├── GainputInputDevicePadMac.h │ │ │ │ │ ├── GainputInputDevicePadNull.h │ │ │ │ │ ├── GainputInputDevicePadWin.h │ │ │ │ │ └── GainputInputDevicePadWinDirectInput.h │ │ │ │ │ ├── recorder │ │ │ │ │ ├── GainputInputPlayer.cpp │ │ │ │ │ ├── GainputInputRecorder.cpp │ │ │ │ │ └── GainputInputRecording.cpp │ │ │ │ │ └── touch │ │ │ │ │ ├── GainputInputDeviceTouch.cpp │ │ │ │ │ ├── GainputInputDeviceTouchAndroid.h │ │ │ │ │ ├── GainputInputDeviceTouchImpl.h │ │ │ │ │ ├── GainputInputDeviceTouchIos.h │ │ │ │ │ ├── GainputInputDeviceTouchNull.h │ │ │ │ │ └── GainputTouchInfo.h │ │ │ ├── samples │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── android │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── project.properties │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ ├── basic │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── basicsample_android.cpp │ │ │ │ │ ├── basicsample_android_generic.cpp │ │ │ │ │ ├── basicsample_ios.mm │ │ │ │ │ ├── basicsample_linux.cpp │ │ │ │ │ ├── basicsample_mac.mm │ │ │ │ │ └── basicsample_win.cpp │ │ │ │ ├── dynamic │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── dynamicsample.cpp │ │ │ │ ├── gesture │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── gesturesample.cpp │ │ │ │ ├── listener │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── listenersample.cpp │ │ │ │ ├── recording │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── recordingsample.cpp │ │ │ │ ├── samplefw │ │ │ │ │ ├── SampleFramework.cpp │ │ │ │ │ └── SampleFramework.h │ │ │ │ └── sync │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── syncsample.cpp │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test.cpp │ │ │ │ ├── test_inputdevice.cpp │ │ │ │ ├── test_inputmanager.cpp │ │ │ │ ├── test_inputmap.cpp │ │ │ │ ├── test_inputrecording.cpp │ │ │ │ └── test_inputstate.cpp │ │ │ └── tools │ │ │ │ └── html5client │ │ │ │ ├── index.html │ │ │ │ └── touch.html │ │ │ ├── gpudetect │ │ │ ├── include │ │ │ │ ├── DeviceId.h │ │ │ │ ├── GPUDetect.h │ │ │ │ ├── GpuDetectHelper.h │ │ │ │ └── ID3D10Extensions.h │ │ │ ├── license.txt │ │ │ ├── readme.md │ │ │ └── src │ │ │ │ ├── DeviceId.cpp │ │ │ │ └── GPUDetect.cpp │ │ │ ├── hlslparser │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Ext │ │ │ │ └── ShaderTranslator │ │ │ │ │ ├── ShaderTranslator.sln │ │ │ │ │ └── ShaderTranslator │ │ │ │ │ ├── GLSLCommand.cs │ │ │ │ │ ├── HLSLCommand.cs │ │ │ │ │ ├── HLSLCommandPackage.cs │ │ │ │ │ ├── HLSLCommandPackage.vsct │ │ │ │ │ ├── Key.snk │ │ │ │ │ ├── MSLCommand.cs │ │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Resources │ │ │ │ │ ├── GLSLCommand.png │ │ │ │ │ ├── HLSLCommand.png │ │ │ │ │ ├── HLSLCommandPackage.ico │ │ │ │ │ ├── MSLCommand.png │ │ │ │ │ ├── The-Forge.png │ │ │ │ │ └── conffxlogo.png │ │ │ │ │ ├── ShaderTranslator.csproj │ │ │ │ │ ├── TranslateCommand.cs │ │ │ │ │ ├── VSPackage.resx │ │ │ │ │ ├── index.html │ │ │ │ │ ├── packages.config │ │ │ │ │ ├── source.extension.vsixmanifest │ │ │ │ │ └── stylesheet.css │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Parser │ │ │ │ ├── Parser.sln │ │ │ │ └── Parser │ │ │ │ │ ├── CodeWriter.cpp │ │ │ │ │ ├── CodeWriter.h │ │ │ │ │ ├── Engine.cpp │ │ │ │ │ ├── Engine.h │ │ │ │ │ ├── FullTokenizer.cpp │ │ │ │ │ ├── FullTokenizer.h │ │ │ │ │ ├── GLSLGenerator.cpp │ │ │ │ │ ├── GLSLGenerator.h │ │ │ │ │ ├── HLSLGenerator.cpp │ │ │ │ │ ├── HLSLGenerator.h │ │ │ │ │ ├── HLSLParser.cpp │ │ │ │ │ ├── HLSLParser.h │ │ │ │ │ ├── HLSLTokenizer.cpp │ │ │ │ │ ├── HLSLTokenizer.h │ │ │ │ │ ├── HLSLTree.cpp │ │ │ │ │ ├── HLSLTree.h │ │ │ │ │ ├── MCPPPreproc.cpp │ │ │ │ │ ├── MCPPPreproc.h │ │ │ │ │ ├── MSLGenerator.cpp │ │ │ │ │ ├── MSLGenerator.h │ │ │ │ │ ├── Main.cpp │ │ │ │ │ ├── Parser.cpp │ │ │ │ │ ├── Parser.h │ │ │ │ │ ├── Parser.vcxproj │ │ │ │ │ ├── Parser.vcxproj.filters │ │ │ │ │ ├── ParserTest.cpp │ │ │ │ │ ├── StringLibrary.cpp │ │ │ │ │ ├── StringLibrary.h │ │ │ │ │ └── mcpp-master │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── FORGE_README.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SOURCE_GITHUB.txt │ │ │ │ │ ├── config.h │ │ │ │ │ ├── configed.H │ │ │ │ │ ├── directive.c │ │ │ │ │ ├── eval.c │ │ │ │ │ ├── expand.c │ │ │ │ │ ├── internal.H │ │ │ │ │ ├── mbchar.c │ │ │ │ │ ├── mcpp.gyp │ │ │ │ │ ├── mcpp_fopen.c │ │ │ │ │ ├── mcpp_lib.h │ │ │ │ │ ├── mcpp_main.c │ │ │ │ │ ├── mcpp_out.h │ │ │ │ │ ├── msbuild │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.v100.md │ │ │ │ │ ├── README.v110.md │ │ │ │ │ ├── README.v120.md │ │ │ │ │ ├── README.v140.md │ │ │ │ │ ├── README.v141.md │ │ │ │ │ ├── mcpp.nuget.targets │ │ │ │ │ ├── mcpp.proj │ │ │ │ │ ├── mcpp.sln │ │ │ │ │ ├── mcpp.v100.nuspec │ │ │ │ │ ├── mcpp.v100.targets │ │ │ │ │ ├── mcpp.v110.nuspec │ │ │ │ │ ├── mcpp.v110.targets │ │ │ │ │ ├── mcpp.v120.nuspec │ │ │ │ │ ├── mcpp.v120.targets │ │ │ │ │ ├── mcpp.v140.nuspec │ │ │ │ │ ├── mcpp.v140.targets │ │ │ │ │ ├── mcpp.v141.nuspec │ │ │ │ │ ├── mcpp.v141.targets │ │ │ │ │ └── mcpp.vcxproj │ │ │ │ │ ├── support.c │ │ │ │ │ ├── system.H │ │ │ │ │ └── system.c │ │ │ ├── README.md │ │ │ ├── Test │ │ │ │ ├── .gitignore │ │ │ │ ├── compile.bat │ │ │ │ ├── compile_mac.bat │ │ │ │ ├── r_arg_buffer.frag │ │ │ │ ├── r_array_var.frag │ │ │ │ ├── r_assert.frag │ │ │ │ ├── r_byte_address_buffer.comp │ │ │ │ ├── r_cb_shadowing.frag │ │ │ │ ├── r_compute.comp │ │ │ │ ├── r_compute2.comp │ │ │ │ ├── r_initializer.frag │ │ │ │ ├── r_load_tex2_offset.frag │ │ │ │ ├── r_metal_texture.frag │ │ │ │ ├── r_min_support.frag │ │ │ │ ├── r_min_support.vert │ │ │ │ ├── r_min_support2.vert │ │ │ │ ├── r_multi_input.vert │ │ │ │ ├── r_terminal_exp.frag │ │ │ │ ├── r_texture2d_indexing.comp │ │ │ │ ├── r_texture_swizzle.frag │ │ │ │ ├── r_unassigned_registers.frag │ │ │ │ ├── r_varying_array.frag │ │ │ │ └── r_varying_array.vert │ │ │ ├── Web │ │ │ │ ├── Parser │ │ │ │ │ ├── ParserCS.cs │ │ │ │ │ └── ParserCS.csproj │ │ │ │ └── WebTranslator │ │ │ │ │ ├── WebTranslator.sln │ │ │ │ │ └── WebTranslator │ │ │ │ │ ├── Controllers │ │ │ │ │ └── HomeController.cs │ │ │ │ │ ├── Models │ │ │ │ │ ├── DataPackage.cs │ │ │ │ │ └── ErrorViewModel.cs │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Startup.cs │ │ │ │ │ ├── Views │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── About.cshtml │ │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── Shared │ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ ├── WebTranslator.csproj │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── bundleconfig.json │ │ │ │ │ ├── codemirror-5.39.2 │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── addon │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── dialog.js │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ │ └── rulers.js │ │ │ │ │ │ ├── edit │ │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ │ ├── fold │ │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ │ ├── hint │ │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ │ ├── lint │ │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ │ └── merge.js │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ └── simple.js │ │ │ │ │ │ ├── runmode │ │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ │ ├── tern │ │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ │ └── worker.js │ │ │ │ │ │ └── wrap │ │ │ │ │ │ │ └── hardwrap.js │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── activeline.html │ │ │ │ │ │ ├── anywordhint.html │ │ │ │ │ │ ├── bidi.html │ │ │ │ │ │ ├── btree.html │ │ │ │ │ │ ├── buffers.html │ │ │ │ │ │ ├── changemode.html │ │ │ │ │ │ ├── closebrackets.html │ │ │ │ │ │ ├── closetag.html │ │ │ │ │ │ ├── complete.html │ │ │ │ │ │ ├── emacs.html │ │ │ │ │ │ ├── folding.html │ │ │ │ │ │ ├── fullscreen.html │ │ │ │ │ │ ├── hardwrap.html │ │ │ │ │ │ ├── html5complete.html │ │ │ │ │ │ ├── indentwrap.html │ │ │ │ │ │ ├── lint.html │ │ │ │ │ │ ├── loadmode.html │ │ │ │ │ │ ├── marker.html │ │ │ │ │ │ ├── markselection.html │ │ │ │ │ │ ├── matchhighlighter.html │ │ │ │ │ │ ├── matchtags.html │ │ │ │ │ │ ├── merge.html │ │ │ │ │ │ ├── multiplex.html │ │ │ │ │ │ ├── mustache.html │ │ │ │ │ │ ├── panel.html │ │ │ │ │ │ ├── placeholder.html │ │ │ │ │ │ ├── preview.html │ │ │ │ │ │ ├── requirejs.html │ │ │ │ │ │ ├── resize.html │ │ │ │ │ │ ├── rulers.html │ │ │ │ │ │ ├── runmode.html │ │ │ │ │ │ ├── search.html │ │ │ │ │ │ ├── simplemode.html │ │ │ │ │ │ ├── simplescrollbars.html │ │ │ │ │ │ ├── spanaffectswrapping_shim.html │ │ │ │ │ │ ├── sublime.html │ │ │ │ │ │ ├── tern.html │ │ │ │ │ │ ├── theme.html │ │ │ │ │ │ ├── trailingspace.html │ │ │ │ │ │ ├── variableheight.html │ │ │ │ │ │ ├── vim.html │ │ │ │ │ │ ├── visibletabs.html │ │ │ │ │ │ ├── widget.html │ │ │ │ │ │ └── xmlcomplete.html │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── activebookmark.js │ │ │ │ │ │ ├── docs.css │ │ │ │ │ │ ├── internals.html │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ ├── manual.html │ │ │ │ │ │ ├── realworld.html │ │ │ │ │ │ ├── releases.html │ │ │ │ │ │ ├── reporting.html │ │ │ │ │ │ ├── upgrade_v2.2.html │ │ │ │ │ │ ├── upgrade_v3.html │ │ │ │ │ │ ├── upgrade_v4.html │ │ │ │ │ │ └── yinyang.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── keymap │ │ │ │ │ │ ├── emacs.js │ │ │ │ │ │ ├── sublime.js │ │ │ │ │ │ └── vim.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ └── codemirror.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── apl │ │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asciiarmor │ │ │ │ │ │ │ ├── asciiarmor.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asn.1 │ │ │ │ │ │ │ ├── asn.1.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asterisk │ │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── brainfuck │ │ │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── clike │ │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scala.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── clojure │ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ ├── cmake.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cobol │ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── crystal │ │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ ├── gss.html │ │ │ │ │ │ │ ├── gss_test.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── cypher │ │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── dart │ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── django │ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── dtd │ │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dylan │ │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── ebnf │ │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── ecl │ │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── eiffel │ │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── elm │ │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── erlang │ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── factor │ │ │ │ │ │ │ ├── factor.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── fcl │ │ │ │ │ │ │ ├── fcl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── forth │ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── fortran │ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── gas │ │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── gfm │ │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── gherkin │ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── groovy │ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haml │ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── handlebars │ │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haskell-literate │ │ │ │ │ │ │ ├── haskell-literate.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haskell │ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haxe │ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── idl │ │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── typescript.html │ │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── julia │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── julia.js │ │ │ │ │ │ ├── livescript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── livescript.js │ │ │ │ │ │ ├── lua │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── lua.js │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── mathematica │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mathematica.js │ │ │ │ │ │ ├── mbox │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mbox.js │ │ │ │ │ │ ├── meta.js │ │ │ │ │ │ ├── mirc │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mirc.js │ │ │ │ │ │ ├── mllike │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mllike.js │ │ │ │ │ │ ├── modelica │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── modelica.js │ │ │ │ │ │ ├── mscgen │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mscgen.js │ │ │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ │ │ └── xu_test.js │ │ │ │ │ │ ├── mumps │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mumps.js │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nginx.js │ │ │ │ │ │ ├── nsis │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nsis.js │ │ │ │ │ │ ├── ntriples │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ │ ├── octave │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── octave.js │ │ │ │ │ │ ├── oz │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── oz.js │ │ │ │ │ │ ├── pascal │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pascal.js │ │ │ │ │ │ ├── pegjs │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ │ ├── perl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── perl.js │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── pig │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pig.js │ │ │ │ │ │ ├── powershell │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── properties.js │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ │ ├── pug │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pug.js │ │ │ │ │ │ ├── puppet │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── puppet.js │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── q │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── q.js │ │ │ │ │ │ ├── r │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── r.js │ │ │ │ │ │ ├── rpm │ │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── rpm.js │ │ │ │ │ │ ├── rst │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── rst.js │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── rust │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sas │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sas.js │ │ │ │ │ │ ├── sass │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scheme.js │ │ │ │ │ │ ├── shell │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sieve │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sieve.js │ │ │ │ │ │ ├── slim │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ │ ├── smarty │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── smarty.js │ │ │ │ │ │ ├── solr │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── solr.js │ │ │ │ │ │ ├── soy │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── soy.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sparql │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sparql.js │ │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sql.js │ │ │ │ │ │ ├── stex │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── stylus │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── stylus.js │ │ │ │ │ │ ├── swift │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── tcl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── tcl.js │ │ │ │ │ │ ├── textile │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── textile.js │ │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ │ ├── tiki │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ │ └── tiki.js │ │ │ │ │ │ ├── toml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── toml.js │ │ │ │ │ │ ├── tornado │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── tornado.js │ │ │ │ │ │ ├── troff │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── troff.js │ │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ │ ├── ttcn │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ttcn.js │ │ │ │ │ │ ├── turtle │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── turtle.js │ │ │ │ │ │ ├── twig │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── twig.js │ │ │ │ │ │ ├── vb │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vb.js │ │ │ │ │ │ ├── vbscript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ │ ├── velocity │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── velocity.js │ │ │ │ │ │ ├── verilog │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── verilog.js │ │ │ │ │ │ ├── vhdl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vhdl.js │ │ │ │ │ │ ├── vue │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vue.js │ │ │ │ │ │ ├── webidl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── webidl.js │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── xml.js │ │ │ │ │ │ ├── xquery │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── xquery.js │ │ │ │ │ │ ├── yacas │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yacas.js │ │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ │ ├── yaml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yaml.js │ │ │ │ │ │ └── z80 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── z80.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── rollup.config.js │ │ │ │ │ ├── src │ │ │ │ │ │ ├── codemirror.js │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── Display.js │ │ │ │ │ │ │ ├── focus.js │ │ │ │ │ │ │ ├── gutters.js │ │ │ │ │ │ │ ├── highlight_worker.js │ │ │ │ │ │ │ ├── line_numbers.js │ │ │ │ │ │ │ ├── mode_state.js │ │ │ │ │ │ │ ├── operations.js │ │ │ │ │ │ │ ├── scroll_events.js │ │ │ │ │ │ │ ├── scrollbars.js │ │ │ │ │ │ │ ├── scrolling.js │ │ │ │ │ │ │ ├── selection.js │ │ │ │ │ │ │ ├── update_display.js │ │ │ │ │ │ │ ├── update_line.js │ │ │ │ │ │ │ ├── update_lines.js │ │ │ │ │ │ │ └── view_tracking.js │ │ │ │ │ │ ├── edit │ │ │ │ │ │ │ ├── CodeMirror.js │ │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ │ ├── deleteNearSelection.js │ │ │ │ │ │ │ ├── drop_events.js │ │ │ │ │ │ │ ├── fromTextArea.js │ │ │ │ │ │ │ ├── global_events.js │ │ │ │ │ │ │ ├── key_events.js │ │ │ │ │ │ │ ├── legacy.js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ ├── methods.js │ │ │ │ │ │ │ ├── mouse_events.js │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── ContentEditableInput.js │ │ │ │ │ │ │ ├── TextareaInput.js │ │ │ │ │ │ │ ├── indent.js │ │ │ │ │ │ │ ├── input.js │ │ │ │ │ │ │ ├── keymap.js │ │ │ │ │ │ │ ├── keynames.js │ │ │ │ │ │ │ └── movement.js │ │ │ │ │ │ ├── line │ │ │ │ │ │ │ ├── highlight.js │ │ │ │ │ │ │ ├── line_data.js │ │ │ │ │ │ │ ├── pos.js │ │ │ │ │ │ │ ├── saw_special_spans.js │ │ │ │ │ │ │ ├── spans.js │ │ │ │ │ │ │ └── utils_line.js │ │ │ │ │ │ ├── measurement │ │ │ │ │ │ │ ├── position_measurement.js │ │ │ │ │ │ │ └── widgets.js │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── Doc.js │ │ │ │ │ │ │ ├── change_measurement.js │ │ │ │ │ │ │ ├── changes.js │ │ │ │ │ │ │ ├── chunk.js │ │ │ │ │ │ │ ├── document_data.js │ │ │ │ │ │ │ ├── history.js │ │ │ │ │ │ │ ├── line_widget.js │ │ │ │ │ │ │ ├── mark_text.js │ │ │ │ │ │ │ ├── selection.js │ │ │ │ │ │ │ └── selection_updates.js │ │ │ │ │ │ ├── modes.js │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── StringStream.js │ │ │ │ │ │ │ ├── bidi.js │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ ├── dom.js │ │ │ │ │ │ │ ├── event.js │ │ │ │ │ │ │ ├── feature_detection.js │ │ │ │ │ │ │ ├── misc.js │ │ │ │ │ │ │ └── operation_group.js │ │ │ │ │ ├── test │ │ │ │ │ │ ├── comment_test.js │ │ │ │ │ │ ├── contenteditable_test.js │ │ │ │ │ │ ├── doc_test.js │ │ │ │ │ │ ├── driver.js │ │ │ │ │ │ ├── emacs_test.js │ │ │ │ │ │ ├── html-hint-test.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ ├── mode_test.css │ │ │ │ │ │ ├── mode_test.js │ │ │ │ │ │ ├── multi_test.js │ │ │ │ │ │ ├── phantom_driver.js │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ ├── scroll_test.js │ │ │ │ │ │ ├── search_test.js │ │ │ │ │ │ ├── sql-hint-test.js │ │ │ │ │ │ ├── sublime_test.js │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── vim_test.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ ├── abcdef.css │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ ├── bespin.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── cobalt.css │ │ │ │ │ │ ├── colorforth.css │ │ │ │ │ │ ├── darcula.css │ │ │ │ │ │ ├── dracula.css │ │ │ │ │ │ ├── duotone-dark.css │ │ │ │ │ │ ├── duotone-light.css │ │ │ │ │ │ ├── eclipse.css │ │ │ │ │ │ ├── elegant.css │ │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ │ ├── icecoder.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── isotope.css │ │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ │ ├── lucario.css │ │ │ │ │ │ ├── material.css │ │ │ │ │ │ ├── mbo.css │ │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ │ ├── midnight.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── neat.css │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ ├── oceanic-next.css │ │ │ │ │ │ ├── panda-syntax.css │ │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ │ ├── seti.css │ │ │ │ │ │ ├── shadowfox.css │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ ├── ssms.css │ │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── ttcn.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ ├── xq-light.css │ │ │ │ │ │ ├── yeti.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ ├── conffx_logo_shadow.ico │ │ │ │ │ └── wwwroot │ │ │ │ │ ├── css │ │ │ │ │ ├── site.css │ │ │ │ │ └── site.min.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── images │ │ │ │ │ ├── The-Forge_logo.png │ │ │ │ │ ├── banner1.svg │ │ │ │ │ ├── banner2.svg │ │ │ │ │ ├── banner3.svg │ │ │ │ │ ├── banner4.svg │ │ │ │ │ ├── conffx_logo_shadow.ico │ │ │ │ │ └── conffx_logo_shadow.png │ │ │ │ │ ├── js │ │ │ │ │ ├── codemirror-mode-hlsl.js │ │ │ │ │ ├── site.js │ │ │ │ │ └── site.min.js │ │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ │ └── bootswatch-slate.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ │ ├── codemirror │ │ │ │ │ ├── addon │ │ │ │ │ │ ├── comment │ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ └── dialog.js │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ │ └── rulers.js │ │ │ │ │ │ ├── edit │ │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ │ ├── fold │ │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ │ ├── hint │ │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ │ ├── lint │ │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ │ ├── html-lint.js │ │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ │ └── merge.js │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ │ └── simple.js │ │ │ │ │ │ ├── runmode │ │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ │ ├── scroll │ │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ │ ├── tern │ │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ │ └── worker.js │ │ │ │ │ │ └── wrap │ │ │ │ │ │ │ └── hardwrap.js │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── codemirror.min.css │ │ │ │ │ ├── keymap │ │ │ │ │ │ ├── emacs.js │ │ │ │ │ │ ├── sublime.js │ │ │ │ │ │ └── vim.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── apl │ │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asciiarmor │ │ │ │ │ │ │ ├── asciiarmor.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asn.1 │ │ │ │ │ │ │ ├── asn.1.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── asterisk │ │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── brainfuck │ │ │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── clike │ │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scala.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── clojure │ │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cmake │ │ │ │ │ │ │ ├── cmake.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── cobol │ │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── crystal │ │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ ├── gss.html │ │ │ │ │ │ │ ├── gss_test.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── cypher │ │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── d │ │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── dart │ │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── diff │ │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── django │ │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── dtd │ │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── dylan │ │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── ebnf │ │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── ecl │ │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── eiffel │ │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── elm │ │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── erlang │ │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── factor │ │ │ │ │ │ │ ├── factor.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── fcl │ │ │ │ │ │ │ ├── fcl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── forth │ │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── fortran │ │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── gas │ │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── gfm │ │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── gherkin │ │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── go │ │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── groovy │ │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haml │ │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── handlebars │ │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haskell-literate │ │ │ │ │ │ │ ├── haskell-literate.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haskell │ │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── haxe │ │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── idl │ │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── typescript.html │ │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jsx.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── julia │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── julia.js │ │ │ │ │ │ ├── livescript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── livescript.js │ │ │ │ │ │ ├── lua │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── lua.js │ │ │ │ │ │ ├── markdown │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── mathematica │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mathematica.js │ │ │ │ │ │ ├── mbox │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mbox.js │ │ │ │ │ │ ├── meta.js │ │ │ │ │ │ ├── mirc │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mirc.js │ │ │ │ │ │ ├── mllike │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mllike.js │ │ │ │ │ │ ├── modelica │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── modelica.js │ │ │ │ │ │ ├── mscgen │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── mscgen.js │ │ │ │ │ │ │ ├── mscgen_test.js │ │ │ │ │ │ │ ├── msgenny_test.js │ │ │ │ │ │ │ └── xu_test.js │ │ │ │ │ │ ├── mumps │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── mumps.js │ │ │ │ │ │ ├── nginx │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nginx.js │ │ │ │ │ │ ├── nsis │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── nsis.js │ │ │ │ │ │ ├── ntriples │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ │ ├── octave │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── octave.js │ │ │ │ │ │ ├── oz │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── oz.js │ │ │ │ │ │ ├── pascal │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pascal.js │ │ │ │ │ │ ├── pegjs │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ │ ├── perl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── perl.js │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── pig │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pig.js │ │ │ │ │ │ ├── powershell │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── properties.js │ │ │ │ │ │ ├── protobuf │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ │ ├── pug │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── pug.js │ │ │ │ │ │ ├── puppet │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── puppet.js │ │ │ │ │ │ ├── python │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── q │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── q.js │ │ │ │ │ │ ├── r │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── r.js │ │ │ │ │ │ ├── rpm │ │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── rpm.js │ │ │ │ │ │ ├── rst │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── rst.js │ │ │ │ │ │ ├── ruby │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── rust │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sas │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sas.js │ │ │ │ │ │ ├── sass │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── sass.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── scheme │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scheme.js │ │ │ │ │ │ ├── shell │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sieve │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sieve.js │ │ │ │ │ │ ├── slim │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ │ ├── smarty │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── smarty.js │ │ │ │ │ │ ├── solr │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── solr.js │ │ │ │ │ │ ├── soy │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── soy.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── sparql │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sparql.js │ │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ │ ├── sql │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── sql.js │ │ │ │ │ │ ├── stex │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── stylus │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── stylus.js │ │ │ │ │ │ ├── swift │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── tcl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── tcl.js │ │ │ │ │ │ ├── textile │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── textile.js │ │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ │ ├── tiki │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ │ └── tiki.js │ │ │ │ │ │ ├── toml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── toml.js │ │ │ │ │ │ ├── tornado │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── tornado.js │ │ │ │ │ │ ├── troff │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── troff.js │ │ │ │ │ │ ├── ttcn-cfg │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ │ │ ├── ttcn │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── ttcn.js │ │ │ │ │ │ ├── turtle │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── turtle.js │ │ │ │ │ │ ├── twig │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── twig.js │ │ │ │ │ │ ├── vb │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vb.js │ │ │ │ │ │ ├── vbscript │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ │ ├── velocity │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── velocity.js │ │ │ │ │ │ ├── verilog │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── verilog.js │ │ │ │ │ │ ├── vhdl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vhdl.js │ │ │ │ │ │ ├── vue │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── vue.js │ │ │ │ │ │ ├── webidl │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── webidl.js │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── xml.js │ │ │ │ │ │ ├── xquery │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ └── xquery.js │ │ │ │ │ │ ├── yacas │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yacas.js │ │ │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ │ │ ├── yaml │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── yaml.js │ │ │ │ │ │ └── z80 │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── z80.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ ├── abcdef.css │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ ├── bespin.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── cobalt.css │ │ │ │ │ │ ├── colorforth.css │ │ │ │ │ │ ├── darcula.css │ │ │ │ │ │ ├── dracula.css │ │ │ │ │ │ ├── duotone-dark.css │ │ │ │ │ │ ├── duotone-light.css │ │ │ │ │ │ ├── eclipse.css │ │ │ │ │ │ ├── elegant.css │ │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ │ ├── icecoder.css │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ ├── isotope.css │ │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ │ ├── lucario.css │ │ │ │ │ │ ├── material.css │ │ │ │ │ │ ├── mbo.css │ │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ │ ├── midnight.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── neat.css │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ ├── oceanic-next.css │ │ │ │ │ │ ├── panda-syntax.css │ │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ │ ├── seti.css │ │ │ │ │ │ ├── shadowfox.css │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ ├── ssms.css │ │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── ttcn.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ ├── xq-light.css │ │ │ │ │ │ ├── yeti.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── jquery │ │ │ │ │ ├── .bower.json │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── jquery.min.map │ │ │ └── premake4.lua │ │ │ ├── imgui │ │ │ ├── LICENSE.txt │ │ │ ├── imconfig.h │ │ │ ├── imgui.cpp │ │ │ ├── imgui.h │ │ │ ├── imgui_demo.cpp │ │ │ ├── imgui_draw.cpp │ │ │ ├── imgui_internal.h │ │ │ └── imgui_widgets.cpp │ │ │ ├── lua-5.3.5 │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── doc │ │ │ │ ├── contents.html │ │ │ │ ├── index.css │ │ │ │ ├── logo.gif │ │ │ │ ├── lua.1 │ │ │ │ ├── lua.css │ │ │ │ ├── luac.1 │ │ │ │ ├── manual.css │ │ │ │ ├── manual.html │ │ │ │ ├── osi-certified-72x60.png │ │ │ │ └── readme.html │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── lapi.c │ │ │ │ ├── lapi.h │ │ │ │ ├── lauxlib.c │ │ │ │ ├── lauxlib.h │ │ │ │ ├── lbaselib.c │ │ │ │ ├── lbitlib.c │ │ │ │ ├── lcode.c │ │ │ │ ├── lcode.h │ │ │ │ ├── lcorolib.c │ │ │ │ ├── lctype.c │ │ │ │ ├── lctype.h │ │ │ │ ├── ldblib.c │ │ │ │ ├── ldebug.c │ │ │ │ ├── ldebug.h │ │ │ │ ├── ldo.c │ │ │ │ ├── ldo.h │ │ │ │ ├── ldump.c │ │ │ │ ├── lfunc.c │ │ │ │ ├── lfunc.h │ │ │ │ ├── lgc.c │ │ │ │ ├── lgc.h │ │ │ │ ├── linit.c │ │ │ │ ├── liolib.c │ │ │ │ ├── llex.c │ │ │ │ ├── llex.h │ │ │ │ ├── llimits.h │ │ │ │ ├── lmathlib.c │ │ │ │ ├── lmem.c │ │ │ │ ├── lmem.h │ │ │ │ ├── loadlib.c │ │ │ │ ├── lobject.c │ │ │ │ ├── lobject.h │ │ │ │ ├── lopcodes.c │ │ │ │ ├── lopcodes.h │ │ │ │ ├── loslib.c │ │ │ │ ├── lparser.c │ │ │ │ ├── lparser.h │ │ │ │ ├── lprefix.h │ │ │ │ ├── lstate.c │ │ │ │ ├── lstate.h │ │ │ │ ├── lstring.c │ │ │ │ ├── lstring.h │ │ │ │ ├── lstrlib.c │ │ │ │ ├── ltable.c │ │ │ │ ├── ltable.h │ │ │ │ ├── ltablib.c │ │ │ │ ├── ltm.c │ │ │ │ ├── ltm.h │ │ │ │ ├── lua.c │ │ │ │ ├── lua.h │ │ │ │ ├── lua.hpp │ │ │ │ ├── luac.c │ │ │ │ ├── luaconf.h │ │ │ │ ├── lualib.h │ │ │ │ ├── lundump.c │ │ │ │ ├── lundump.h │ │ │ │ ├── lutf8lib.c │ │ │ │ ├── lvm.c │ │ │ │ ├── lvm.h │ │ │ │ ├── lzio.c │ │ │ │ └── lzio.h │ │ │ ├── meshoptimizer │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── codecov.yml │ │ │ ├── demo │ │ │ │ ├── GLTFLoader.js │ │ │ │ ├── ansi.c │ │ │ │ ├── babylon.MESHOPT_compression.js │ │ │ │ ├── demo.html │ │ │ │ ├── index.html │ │ │ │ ├── main.cpp │ │ │ │ ├── miniz.cpp │ │ │ │ ├── miniz.h │ │ │ │ ├── pirate.glb │ │ │ │ └── tests.cpp │ │ │ ├── js │ │ │ │ ├── meshopt_decoder.js │ │ │ │ └── meshopt_decoder.test.js │ │ │ ├── src │ │ │ │ ├── allocator.cpp │ │ │ │ ├── clusterizer.cpp │ │ │ │ ├── indexcodec.cpp │ │ │ │ ├── indexgenerator.cpp │ │ │ │ ├── meshoptimizer.h │ │ │ │ ├── overdrawanalyzer.cpp │ │ │ │ ├── overdrawoptimizer.cpp │ │ │ │ ├── simplifier.cpp │ │ │ │ ├── spatialorder.cpp │ │ │ │ ├── stripifier.cpp │ │ │ │ ├── vcacheanalyzer.cpp │ │ │ │ ├── vcacheoptimizer.cpp │ │ │ │ ├── vertexcodec.cpp │ │ │ │ ├── vfetchanalyzer.cpp │ │ │ │ └── vfetchoptimizer.cpp │ │ │ └── tools │ │ │ │ ├── basistoktx.cpp │ │ │ │ ├── basisu_format.h │ │ │ │ ├── cgltf.h │ │ │ │ ├── fast_obj.h │ │ │ │ ├── gltfpack.cpp │ │ │ │ ├── khr_df.h │ │ │ │ ├── lodviewer.cpp │ │ │ │ ├── meshloader.cpp │ │ │ │ ├── vcachetester.cpp │ │ │ │ └── vcachetuner.cpp │ │ │ ├── murmurhash3 │ │ │ └── MurmurHash3_32.h │ │ │ ├── nvapi │ │ │ ├── NvApiDriverSettings.c │ │ │ ├── NvApiDriverSettings.h │ │ │ ├── NvApiHelper.h │ │ │ ├── Sample_Code │ │ │ │ ├── CustomTiming │ │ │ │ │ ├── CustomTiming.cpp │ │ │ │ │ └── targetver.h │ │ │ │ ├── DisplayColorControl │ │ │ │ │ ├── DisplayColorControl.cpp │ │ │ │ │ ├── NVHelper.cpp │ │ │ │ │ └── NVHelper.h │ │ │ │ ├── DisplayConfiguration │ │ │ │ │ ├── DisplayConfiguration.cpp │ │ │ │ │ └── targetver.h │ │ │ │ ├── Sync_Configuration │ │ │ │ │ ├── Sync_Configuration.cpp │ │ │ │ │ └── targetver.h │ │ │ │ └── i2c │ │ │ │ │ ├── i2c.cpp │ │ │ │ │ └── targetver.h │ │ │ ├── amd64 │ │ │ │ └── nvapi64.lib │ │ │ ├── docs │ │ │ │ ├── NVAPI_R440_Public_SDK_RelNotes_v01.pdf │ │ │ │ ├── NVAPI_Reference_Developer.chm │ │ │ │ ├── NVAPI_Reference_html_R440.zip │ │ │ │ └── NVAPI_SDKs_Samples_and_Tools_License_Agreement(Public).pdf │ │ │ ├── nvHLSLExtns.h │ │ │ ├── nvHLSLExtnsInternal.h │ │ │ ├── nvShaderExtnEnums.h │ │ │ ├── nvapi.h │ │ │ ├── nvapi_lite_common.h │ │ │ ├── nvapi_lite_d3dext.h │ │ │ ├── nvapi_lite_salend.h │ │ │ ├── nvapi_lite_salstart.h │ │ │ ├── nvapi_lite_sli.h │ │ │ ├── nvapi_lite_stereo.h │ │ │ ├── nvapi_lite_surround.h │ │ │ └── x86 │ │ │ │ └── nvapi.lib │ │ │ ├── ozz-animation │ │ │ ├── .clang-format │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AndroidVisualStudio2017 │ │ │ │ ├── ARM.props │ │ │ │ ├── ARM64.props │ │ │ │ └── src │ │ │ │ │ ├── animation │ │ │ │ │ ├── offline │ │ │ │ │ │ └── ozz_animation_offline │ │ │ │ │ │ │ ├── ozz_animation_offline.vcxproj │ │ │ │ │ │ │ └── ozz_animation_offline.vcxproj.filters │ │ │ │ │ └── runtime │ │ │ │ │ │ └── ozz_animation │ │ │ │ │ │ ├── ozz_animation.vcxproj │ │ │ │ │ │ └── ozz_animation.vcxproj.filters │ │ │ │ │ └── base │ │ │ │ │ └── ozz_base │ │ │ │ │ ├── ozz_base.vcxproj │ │ │ │ │ └── ozz_base.vcxproj.filters │ │ │ ├── CHANGES.md │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE.md │ │ │ ├── MacOS │ │ │ │ ├── ozz.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── src │ │ │ │ │ ├── animation │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── offline │ │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_offline_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_offline_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_offline_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ │ └── BUILD_FUSE_ozz_animation_offline_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ ├── fbx │ │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ │ └── tools │ │ │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_tools_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_tools_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_tools_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_tools_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ │ │ ├── dump2ozz_postBuildPhase.makeDebug │ │ │ │ │ │ │ ├── dump2ozz_postBuildPhase.makeMinSizeRel │ │ │ │ │ │ │ ├── dump2ozz_postBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ │ └── dump2ozz_postBuildPhase.makeRelease │ │ │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ │ │ └── json │ │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ │ ├── BUILD_FUSE_ozz_animation_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ └── BUILD_FUSE_ozz_animation_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── base │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ │ ├── BUILD_FUSE_ozz_base_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ │ ├── BUILD_FUSE_ozz_base_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ │ ├── BUILD_FUSE_ozz_base_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ └── BUILD_FUSE_ozz_base_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ ├── geometry │ │ │ │ │ ├── cmake_install.cmake │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ │ ├── BUILD_FUSE_ozz_geometry_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ │ ├── BUILD_FUSE_ozz_geometry_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ │ ├── BUILD_FUSE_ozz_geometry_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ │ └── BUILD_FUSE_ozz_geometry_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ │ └── cmake_install.cmake │ │ │ │ │ └── options │ │ │ │ │ ├── CMakeScripts │ │ │ │ │ ├── BUILD_FUSE_ozz_options_cmakeRulesBuildPhase.makeDebug │ │ │ │ │ ├── BUILD_FUSE_ozz_options_cmakeRulesBuildPhase.makeMinSizeRel │ │ │ │ │ ├── BUILD_FUSE_ozz_options_cmakeRulesBuildPhase.makeRelWithDebInfo │ │ │ │ │ └── BUILD_FUSE_ozz_options_cmakeRulesBuildPhase.makeRelease │ │ │ │ │ └── cmake_install.cmake │ │ │ ├── Orbis │ │ │ │ └── src │ │ │ │ │ ├── animation │ │ │ │ │ ├── offline │ │ │ │ │ │ ├── ozz_animation_offline.vcxproj │ │ │ │ │ │ └── ozz_animation_offline.vcxproj.filters │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── ozz_animation.vcxproj │ │ │ │ │ │ └── ozz_animation.vcxproj.filters │ │ │ │ │ └── base │ │ │ │ │ ├── ozz_base.vcxproj │ │ │ │ │ └── ozz_base.vcxproj.filters │ │ │ ├── Prospero │ │ │ │ └── src │ │ │ │ │ ├── animation │ │ │ │ │ ├── offline │ │ │ │ │ │ ├── ozz_animation_offline.vcxproj │ │ │ │ │ │ └── ozz_animation_offline.vcxproj.filters │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── ozz_animation.vcxproj │ │ │ │ │ │ └── ozz_animation.vcxproj.filters │ │ │ │ │ └── base │ │ │ │ │ ├── ozz_base.vcxproj │ │ │ │ │ └── ozz_base.vcxproj.filters │ │ │ ├── README.md │ │ │ ├── Ubuntu │ │ │ │ ├── ozz_animation.project │ │ │ │ ├── ozz_animation.txt │ │ │ │ ├── ozz_animation_offline.project │ │ │ │ ├── ozz_animation_offline.txt │ │ │ │ ├── ozz_base.project │ │ │ │ └── ozz_base.txt │ │ │ ├── Win64 │ │ │ │ └── src │ │ │ │ │ ├── animation │ │ │ │ │ ├── offline │ │ │ │ │ │ ├── ozz_animation_offline.vcxproj │ │ │ │ │ │ └── ozz_animation_offline.vcxproj.filters │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── ozz_animation.vcxproj │ │ │ │ │ │ └── ozz_animation.vcxproj.filters │ │ │ │ │ └── base │ │ │ │ │ ├── ozz_base.vcxproj │ │ │ │ │ └── ozz_base.vcxproj.filters │ │ │ ├── appveyor.yml │ │ │ ├── build-helper.py │ │ │ ├── build-utils │ │ │ │ ├── cmake │ │ │ │ │ ├── clang_format.cmake │ │ │ │ │ ├── compiler_settings.cmake │ │ │ │ │ ├── fuse_target.cmake │ │ │ │ │ ├── fuse_target_script.cmake │ │ │ │ │ ├── modules │ │ │ │ │ │ └── FindFbx.cmake │ │ │ │ │ └── package_settings.cmake │ │ │ │ └── internal │ │ │ │ │ └── format_license.py │ │ │ ├── dashboard.html │ │ │ ├── documentation.html │ │ │ ├── include │ │ │ │ └── ozz │ │ │ │ │ ├── animation │ │ │ │ │ ├── offline │ │ │ │ │ │ ├── additive_animation_builder.h │ │ │ │ │ │ ├── animation_builder.h │ │ │ │ │ │ ├── animation_optimizer.h │ │ │ │ │ │ ├── fbx │ │ │ │ │ │ │ ├── fbx.h │ │ │ │ │ │ │ ├── fbx_animation.h │ │ │ │ │ │ │ └── fbx_skeleton.h │ │ │ │ │ │ ├── raw_animation.h │ │ │ │ │ │ ├── raw_animation_utils.h │ │ │ │ │ │ ├── raw_skeleton.h │ │ │ │ │ │ ├── raw_track.h │ │ │ │ │ │ ├── skeleton_builder.h │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ └── import2ozz.h │ │ │ │ │ │ ├── track_builder.h │ │ │ │ │ │ └── track_optimizer.h │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── animation.h │ │ │ │ │ │ ├── blending_job.h │ │ │ │ │ │ ├── ik_aim_job.h │ │ │ │ │ │ ├── ik_two_bone_job.h │ │ │ │ │ │ ├── local_to_model_job.h │ │ │ │ │ │ ├── sampling_job.h │ │ │ │ │ │ ├── skeleton.h │ │ │ │ │ │ ├── skeleton_utils.h │ │ │ │ │ │ ├── track.h │ │ │ │ │ │ ├── track_sampling_job.h │ │ │ │ │ │ ├── track_triggering_job.h │ │ │ │ │ │ └── track_triggering_job_stl.h │ │ │ │ │ ├── base │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ ├── set.h │ │ │ │ │ │ ├── string.h │ │ │ │ │ │ ├── string_archive.h │ │ │ │ │ │ ├── vector.h │ │ │ │ │ │ └── vector_archive.h │ │ │ │ │ ├── endianness.h │ │ │ │ │ ├── gtest_helper.h │ │ │ │ │ ├── io │ │ │ │ │ │ ├── archive.h │ │ │ │ │ │ └── archive_traits.h │ │ │ │ │ ├── maths │ │ │ │ │ │ ├── gtest_math_helper.h │ │ │ │ │ │ ├── math_archive.h │ │ │ │ │ │ ├── math_constant.h │ │ │ │ │ │ ├── math_ex.h │ │ │ │ │ │ ├── simd_math_archive.h │ │ │ │ │ │ └── soa_math_archive.h │ │ │ │ │ ├── memory │ │ │ │ │ │ └── allocator.h │ │ │ │ │ └── platform.h │ │ │ │ │ ├── geometry │ │ │ │ │ └── runtime │ │ │ │ │ │ └── skinning_job.h │ │ │ │ │ └── options │ │ │ │ │ └── options.h │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── animation │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── offline │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── additive_animation_builder.cc │ │ │ │ │ ├── animation_builder.cc │ │ │ │ │ ├── animation_optimizer.cc │ │ │ │ │ ├── fbx │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── fbx.cc │ │ │ │ │ │ ├── fbx2ozz.cc │ │ │ │ │ │ ├── fbx2ozz.h │ │ │ │ │ │ ├── fbx2ozz_anim.cc │ │ │ │ │ │ ├── fbx2ozz_skel.cc │ │ │ │ │ │ ├── fbx_animation.cc │ │ │ │ │ │ └── fbx_skeleton.cc │ │ │ │ │ ├── raw_animation.cc │ │ │ │ │ ├── raw_animation_archive.cc │ │ │ │ │ ├── raw_animation_utils.cc │ │ │ │ │ ├── raw_skeleton.cc │ │ │ │ │ ├── raw_skeleton_archive.cc │ │ │ │ │ ├── raw_track.cc │ │ │ │ │ ├── skeleton_builder.cc │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── dump2ozz.cc │ │ │ │ │ │ ├── import2ozz.cc │ │ │ │ │ │ ├── import2ozz_anim.cc │ │ │ │ │ │ ├── import2ozz_anim.h │ │ │ │ │ │ ├── import2ozz_config.cc │ │ │ │ │ │ ├── import2ozz_config.h │ │ │ │ │ │ ├── import2ozz_skel.cc │ │ │ │ │ │ ├── import2ozz_skel.h │ │ │ │ │ │ └── reference.json │ │ │ │ │ ├── track_builder.cc │ │ │ │ │ └── track_optimizer.cc │ │ │ │ └── runtime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── animation.cc │ │ │ │ │ ├── animation_keyframe.h │ │ │ │ │ ├── blending_job.cc │ │ │ │ │ ├── ik_aim_job.cc │ │ │ │ │ ├── ik_two_bone_job.cc │ │ │ │ │ ├── local_to_model_job.cc │ │ │ │ │ ├── sampling_job.cc │ │ │ │ │ ├── skeleton.cc │ │ │ │ │ ├── skeleton_utils.cc │ │ │ │ │ ├── track.cc │ │ │ │ │ ├── track_sampling_job.cc │ │ │ │ │ └── track_triggering_job.cc │ │ │ │ ├── base │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── containers │ │ │ │ │ └── string_archive.cc │ │ │ │ ├── io │ │ │ │ │ └── archive.cc │ │ │ │ ├── maths │ │ │ │ │ ├── math_archive.cc │ │ │ │ │ ├── simd_math_archive.cc │ │ │ │ │ └── soa_math_archive.cc │ │ │ │ ├── memory │ │ │ │ │ └── allocator.cc │ │ │ │ └── platform.cc │ │ │ │ ├── geometry │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── runtime │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── skinning_job.cc │ │ │ │ └── options │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── options.cc │ │ │ ├── renderdoc │ │ │ └── renderdoc_app.h │ │ │ ├── rmem │ │ │ ├── 3rd │ │ │ │ └── lz4-r191 │ │ │ │ │ ├── lz4.c │ │ │ │ │ └── lz4.h │ │ │ ├── inc │ │ │ │ ├── rmem.h │ │ │ │ └── rmem_entry.h │ │ │ └── src │ │ │ │ ├── rmem_config.h │ │ │ │ ├── rmem_enums.h │ │ │ │ ├── rmem_get_module_info.cpp │ │ │ │ ├── rmem_hook.cpp │ │ │ │ ├── rmem_hook.h │ │ │ │ ├── rmem_lib.cpp │ │ │ │ ├── rmem_mutex.h │ │ │ │ ├── rmem_platform.h │ │ │ │ ├── rmem_utils.h │ │ │ │ └── rmem_wrap_win.h │ │ │ ├── soloud20181119 │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING │ │ │ ├── LICENSE │ │ │ ├── LICENSE_FORGE_AMENDMENT │ │ │ ├── include │ │ │ │ ├── soloud.h │ │ │ │ ├── soloud_audiosource.h │ │ │ │ ├── soloud_bassboostfilter.h │ │ │ │ ├── soloud_biquadresonantfilter.h │ │ │ │ ├── soloud_bus.h │ │ │ │ ├── soloud_dcremovalfilter.h │ │ │ │ ├── soloud_echofilter.h │ │ │ │ ├── soloud_error.h │ │ │ │ ├── soloud_fader.h │ │ │ │ ├── soloud_fft.h │ │ │ │ ├── soloud_fftfilter.h │ │ │ │ ├── soloud_file.h │ │ │ │ ├── soloud_file_hack_off.h │ │ │ │ ├── soloud_file_hack_on.h │ │ │ │ ├── soloud_filter.h │ │ │ │ ├── soloud_flangerfilter.h │ │ │ │ ├── soloud_internal.h │ │ │ │ ├── soloud_lofifilter.h │ │ │ │ ├── soloud_monotone.h │ │ │ │ ├── soloud_openmpt.h │ │ │ │ ├── soloud_queue.h │ │ │ │ ├── soloud_robotizefilter.h │ │ │ │ ├── soloud_sfxr.h │ │ │ │ ├── soloud_speech.h │ │ │ │ ├── soloud_tedsid.h │ │ │ │ ├── soloud_thread.h │ │ │ │ ├── soloud_vic.h │ │ │ │ ├── soloud_vizsn.h │ │ │ │ ├── soloud_wav.h │ │ │ │ ├── soloud_waveshaperfilter.h │ │ │ │ └── soloud_wavstream.h │ │ │ ├── readme.txt │ │ │ └── src │ │ │ │ ├── audiosource │ │ │ │ ├── monotone │ │ │ │ │ └── soloud_monotone.cpp │ │ │ │ ├── openmpt │ │ │ │ │ ├── soloud_openmpt.cpp │ │ │ │ │ └── soloud_openmpt_dll.c │ │ │ │ ├── sfxr │ │ │ │ │ └── soloud_sfxr.cpp │ │ │ │ ├── speech │ │ │ │ │ ├── Elements.def │ │ │ │ │ ├── darray.cpp │ │ │ │ │ ├── darray.h │ │ │ │ │ ├── klatt.cpp │ │ │ │ │ ├── klatt.h │ │ │ │ │ ├── legal_readme.txt │ │ │ │ │ ├── resonator.cpp │ │ │ │ │ ├── resonator.h │ │ │ │ │ ├── soloud_speech.cpp │ │ │ │ │ ├── tts.cpp │ │ │ │ │ └── tts.h │ │ │ │ ├── tedsid │ │ │ │ │ ├── sid.cpp │ │ │ │ │ ├── sid.h │ │ │ │ │ ├── soloud_tedsid.cpp │ │ │ │ │ ├── ted.cpp │ │ │ │ │ └── ted.h │ │ │ │ ├── vic │ │ │ │ │ └── soloud_vic.cpp │ │ │ │ ├── vizsn │ │ │ │ │ └── soloud_vizsn.cpp │ │ │ │ └── wav │ │ │ │ │ ├── dr_flac.h │ │ │ │ │ ├── dr_impl.cpp │ │ │ │ │ ├── dr_mp3.h │ │ │ │ │ ├── dr_wav.h │ │ │ │ │ ├── soloud_wav.cpp │ │ │ │ │ ├── soloud_wavstream.cpp │ │ │ │ │ ├── stb_vorbis.cpp │ │ │ │ │ └── stb_vorbis.h │ │ │ │ ├── backend │ │ │ │ ├── alsa │ │ │ │ │ └── soloud_alsa.cpp │ │ │ │ ├── coreaudio │ │ │ │ │ └── soloud_coreaudio.cpp │ │ │ │ ├── opensles │ │ │ │ │ └── soloud_opensles.cpp │ │ │ │ ├── winmm │ │ │ │ │ └── soloud_winmm.cpp │ │ │ │ └── xaudio2 │ │ │ │ │ └── soloud_xaudio2.cpp │ │ │ │ ├── core │ │ │ │ ├── soloud.cpp │ │ │ │ ├── soloud_audiosource.cpp │ │ │ │ ├── soloud_bus.cpp │ │ │ │ ├── soloud_core_3d.cpp │ │ │ │ ├── soloud_core_basicops.cpp │ │ │ │ ├── soloud_core_faderops.cpp │ │ │ │ ├── soloud_core_filterops.cpp │ │ │ │ ├── soloud_core_getters.cpp │ │ │ │ ├── soloud_core_setters.cpp │ │ │ │ ├── soloud_core_voicegroup.cpp │ │ │ │ ├── soloud_core_voiceops.cpp │ │ │ │ ├── soloud_fader.cpp │ │ │ │ ├── soloud_fft.cpp │ │ │ │ ├── soloud_fft_lut.cpp │ │ │ │ ├── soloud_file.cpp │ │ │ │ ├── soloud_filter.cpp │ │ │ │ ├── soloud_queue.cpp │ │ │ │ └── soloud_thread.cpp │ │ │ │ └── filter │ │ │ │ ├── soloud_bassboostfilter.cpp │ │ │ │ ├── soloud_biquadresonantfilter.cpp │ │ │ │ ├── soloud_dcremovalfilter.cpp │ │ │ │ ├── soloud_echofilter.cpp │ │ │ │ ├── soloud_fftfilter.cpp │ │ │ │ ├── soloud_flangerfilter.cpp │ │ │ │ ├── soloud_lofifilter.cpp │ │ │ │ ├── soloud_robotizefilter.cpp │ │ │ │ └── soloud_waveshaperfilter.cpp │ │ │ ├── tinydds │ │ │ └── tinydds.h │ │ │ ├── tinyimageformat │ │ │ ├── tinyimageformat_apis.h │ │ │ ├── tinyimageformat_base.h │ │ │ ├── tinyimageformat_bits.h │ │ │ ├── tinyimageformat_decode.h │ │ │ ├── tinyimageformat_encode.h │ │ │ └── tinyimageformat_query.h │ │ │ ├── tinyktx │ │ │ └── tinyktx.h │ │ │ ├── volk │ │ │ ├── README.md │ │ │ ├── generate.py │ │ │ ├── volk.c │ │ │ ├── volk.h │ │ │ ├── volkForgeExt.c │ │ │ └── volkForgeExt.h │ │ │ ├── winpixeventruntime │ │ │ ├── Include │ │ │ │ └── WinPixEventRuntime │ │ │ │ │ ├── PIXEvents.h │ │ │ │ │ ├── PIXEventsCommon.h │ │ │ │ │ ├── PIXEventsGenerated.h │ │ │ │ │ ├── pix3.h │ │ │ │ │ └── pix3_win.h │ │ │ ├── ThirdPartyNotices.txt │ │ │ ├── WinPixEventRuntime.nuspec │ │ │ ├── [Content_Types].xml │ │ │ ├── _rels │ │ │ │ └── .rels │ │ │ ├── bin │ │ │ │ ├── WinPixEventRuntime.dll │ │ │ │ ├── WinPixEventRuntime.lib │ │ │ │ └── WinPixEventRuntime_UAP.dll │ │ │ └── package │ │ │ │ └── services │ │ │ │ └── metadata │ │ │ │ └── core-properties │ │ │ │ └── 275b2a06678f4be98fcb5edae6a2f3fb.psmdcp │ │ │ └── zip │ │ │ ├── Doxyfile.in │ │ │ ├── README.md │ │ │ ├── UNLICENSE │ │ │ ├── miniz.h │ │ │ ├── zip.cpp │ │ │ └── zip.h │ └── Tools │ │ ├── AssetPipeline │ │ ├── Apple │ │ │ └── AssetPipelineCmd.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── AssetPipelineCmd.xcscheme │ │ ├── AssetPipelineDoc.docx │ │ ├── Linux │ │ │ ├── AssetPipeline.mk │ │ │ ├── AssetPipeline.workspace │ │ │ └── AssetPipelineCmd.project │ │ ├── Win64 │ │ │ ├── AssetPipeline.sln │ │ │ ├── AssetPipelineCmd.vcxproj │ │ │ └── AssetPipelineCmd.vcxproj.filters │ │ └── src │ │ │ ├── AssetPipeline.cpp │ │ │ ├── AssetPipeline.h │ │ │ └── AssetPipelineCmd.cpp │ │ ├── FileSystem │ │ ├── CocoaToolsFileSystem.mm │ │ ├── IToolFileSystem.h │ │ ├── LinuxToolsFileSystem.cpp │ │ ├── WindowsToolsFileSystem.cpp │ │ └── iOSToolsFileSystem.mm │ │ └── SpirvTools │ │ ├── SpirvTools.cpp │ │ └── SpirvTools.h │ ├── LICENSE │ └── Middleware_3 │ ├── Animation │ ├── AnimatedObject.cpp │ ├── AnimatedObject.h │ ├── Animation.cpp │ ├── Animation.h │ ├── Clip.cpp │ ├── Clip.h │ ├── ClipController.cpp │ ├── ClipController.h │ ├── ClipMask.cpp │ ├── ClipMask.h │ ├── Rig.cpp │ ├── Rig.h │ ├── SkeletonBatcher.cpp │ └── SkeletonBatcher.h │ ├── ECS │ ├── BaseComponent.cpp │ ├── BaseComponent.h │ ├── ComponentRepresentation.cpp │ ├── ComponentRepresentation.h │ ├── EntityManager.cpp │ └── EntityManager.h │ ├── LUA │ ├── LuaManager.cpp │ ├── LuaManager.h │ ├── LuaManagerCommon.h │ ├── LuaManagerImpl.cpp │ ├── LuaManagerImpl.h │ └── LunaV.hpp │ ├── PaniniProjection │ ├── Panini.cpp │ ├── Panini.h │ └── Shaders │ │ ├── D3D12 │ │ ├── panini_projection.frag │ │ └── panini_projection.vert │ │ ├── Metal │ │ ├── panini_projection.frag.metal │ │ └── panini_projection.vert.metal │ │ └── Vulkan │ │ ├── panini_projection.frag │ │ └── panini_projection.vert │ ├── ParallelPrimitives │ ├── ParallelPrimitives.cpp │ ├── ParallelPrimitives.h │ └── Shaders │ │ └── Metal │ │ └── ParallelPrimitives.comp.metal │ ├── Text │ ├── Fontstash.cpp │ ├── Fontstash.h │ └── Shaders │ │ ├── D3D11 │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ └── fontstash3D.vert │ │ ├── D3D12 │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ └── fontstash3D.vert │ │ ├── GLES │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ └── fontstash3D.vert │ │ ├── Metal │ │ ├── fontstash.frag.metal │ │ ├── fontstash2D.vert.metal │ │ └── fontstash3D.vert.metal │ │ └── Vulkan │ │ ├── fontstash.frag │ │ ├── fontstash2D.vert │ │ └── fontstash3D.vert │ └── UI │ ├── AppUI.cpp │ ├── AppUI.h │ ├── ImguiGUIDriver.cpp │ ├── Shaders │ ├── D3D11 │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert │ ├── D3D12 │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert │ ├── GLES │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert │ ├── Metal │ │ ├── imgui.frag.metal │ │ ├── imgui.vert.metal │ │ ├── textured_mesh.frag.metal │ │ └── textured_mesh.vert.metal │ └── Vulkan │ │ ├── imgui.frag │ │ ├── imgui.vert │ │ ├── textured_mesh.frag │ │ └── textured_mesh.vert │ ├── imgui_user.cpp │ └── imgui_user.h ├── screenshots └── demo_screenshot.png └── src ├── demo.cpp ├── demo.h ├── interfaces ├── linux │ ├── linuxBase.cpp │ ├── linuxFileSystem.cpp │ ├── linuxLog.cpp │ ├── linuxThread.cpp │ └── linuxTime.cpp └── windows │ ├── windowsBase.cpp │ ├── windowsFileSystem.cpp │ ├── windowsLog.cpp │ ├── windowsThread.cpp │ └── windowsTime.cpp └── main.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GEN_VS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/GEN_VS.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/README.md -------------------------------------------------------------------------------- /bin/WinPixEventRuntime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/WinPixEventRuntime.dll -------------------------------------------------------------------------------- /bin/amd_ags_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/amd_ags_x64.dll -------------------------------------------------------------------------------- /bin/dxcompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/dxcompiler.dll -------------------------------------------------------------------------------- /bin/dxil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/dxil.dll -------------------------------------------------------------------------------- /bin/fonts/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/fonts/ReadMe.md -------------------------------------------------------------------------------- /bin/fonts/TitilliumText/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/fonts/TitilliumText/OFL.txt -------------------------------------------------------------------------------- /bin/fonts/TitilliumText/TitilliumText-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/fonts/TitilliumText/TitilliumText-Bold.otf -------------------------------------------------------------------------------- /bin/gpucfg/gpu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/gpucfg/gpu.cfg -------------------------------------------------------------------------------- /bin/shaders/d3d12/binary/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bin/shaders/d3d12/demo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/demo.frag -------------------------------------------------------------------------------- /bin/shaders/d3d12/demo.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/demo.vert -------------------------------------------------------------------------------- /bin/shaders/d3d12/fontstash.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/fontstash.frag -------------------------------------------------------------------------------- /bin/shaders/d3d12/fontstash2D.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/fontstash2D.vert -------------------------------------------------------------------------------- /bin/shaders/d3d12/fontstash3D.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/fontstash3D.vert -------------------------------------------------------------------------------- /bin/shaders/d3d12/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/imgui.frag -------------------------------------------------------------------------------- /bin/shaders/d3d12/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/imgui.vert -------------------------------------------------------------------------------- /bin/shaders/d3d12/textured_mesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/textured_mesh.frag -------------------------------------------------------------------------------- /bin/shaders/d3d12/textured_mesh.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/d3d12/textured_mesh.vert -------------------------------------------------------------------------------- /bin/shaders/src/Parser.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/src/Parser.exe -------------------------------------------------------------------------------- /bin/shaders/src/demo_fs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/src/demo_fs.hlsl -------------------------------------------------------------------------------- /bin/shaders/src/demo_vs.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/src/demo_vs.hlsl -------------------------------------------------------------------------------- /bin/shaders/src/generate_shaders.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/src/generate_shaders.bat -------------------------------------------------------------------------------- /bin/shaders/vulkan/binary/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bin/shaders/vulkan/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/config.conf -------------------------------------------------------------------------------- /bin/shaders/vulkan/demo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/demo.frag -------------------------------------------------------------------------------- /bin/shaders/vulkan/demo.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/demo.vert -------------------------------------------------------------------------------- /bin/shaders/vulkan/fontstash.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/fontstash.frag -------------------------------------------------------------------------------- /bin/shaders/vulkan/fontstash2D.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/fontstash2D.vert -------------------------------------------------------------------------------- /bin/shaders/vulkan/fontstash3D.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/fontstash3D.vert -------------------------------------------------------------------------------- /bin/shaders/vulkan/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/imgui.frag -------------------------------------------------------------------------------- /bin/shaders/vulkan/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/imgui.vert -------------------------------------------------------------------------------- /bin/shaders/vulkan/textured_mesh.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/textured_mesh.frag -------------------------------------------------------------------------------- /bin/shaders/vulkan/textured_mesh.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/shaders/vulkan/textured_mesh.vert -------------------------------------------------------------------------------- /bin/textures/the-forge.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/bin/textures/the-forge.dds -------------------------------------------------------------------------------- /external/glfw/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/.mailmap -------------------------------------------------------------------------------- /external/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /external/glfw/CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /external/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /external/glfw/CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /external/glfw/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/modules/FindWaylandProtocols.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/modules/FindWaylandProtocols.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/modules/FindXKBCommon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/modules/FindXKBCommon.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /external/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /external/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/LICENSE.md -------------------------------------------------------------------------------- /external/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/README.md -------------------------------------------------------------------------------- /external/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/getopt.c -------------------------------------------------------------------------------- /external/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/getopt.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad/khrplatform.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad/vk_platform.h -------------------------------------------------------------------------------- /external/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /external/glfw/deps/glad_gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad_gl.c -------------------------------------------------------------------------------- /external/glfw/deps/glad_vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/glad_vulkan.c -------------------------------------------------------------------------------- /external/glfw/deps/linmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/linmath.h -------------------------------------------------------------------------------- /external/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /external/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /external/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /external/glfw/deps/nuklear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/nuklear.h -------------------------------------------------------------------------------- /external/glfw/deps/nuklear_glfw_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/nuklear_glfw_gl2.h -------------------------------------------------------------------------------- /external/glfw/deps/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/stb_image_write.h -------------------------------------------------------------------------------- /external/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /external/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /external/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /external/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/docs/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/CODEOWNERS -------------------------------------------------------------------------------- /external/glfw/docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /external/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /external/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /external/glfw/docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/SUPPORT.md -------------------------------------------------------------------------------- /external/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/build.dox -------------------------------------------------------------------------------- /external/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/compat.dox -------------------------------------------------------------------------------- /external/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/compile.dox -------------------------------------------------------------------------------- /external/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/context.dox -------------------------------------------------------------------------------- /external/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/extra.css -------------------------------------------------------------------------------- /external/glfw/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/extra.less -------------------------------------------------------------------------------- /external/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/footer.html -------------------------------------------------------------------------------- /external/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/header.html -------------------------------------------------------------------------------- /external/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/input.dox -------------------------------------------------------------------------------- /external/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/internal.dox -------------------------------------------------------------------------------- /external/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/intro.dox -------------------------------------------------------------------------------- /external/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/main.dox -------------------------------------------------------------------------------- /external/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /external/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/moving.dox -------------------------------------------------------------------------------- /external/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/news.dox -------------------------------------------------------------------------------- /external/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/quick.dox -------------------------------------------------------------------------------- /external/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /external/glfw/docs/vulkan.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/vulkan.dox -------------------------------------------------------------------------------- /external/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/docs/window.dox -------------------------------------------------------------------------------- /external/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/boing.c -------------------------------------------------------------------------------- /external/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/gears.c -------------------------------------------------------------------------------- /external/glfw/examples/glfw.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/glfw.icns -------------------------------------------------------------------------------- /external/glfw/examples/glfw.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/glfw.ico -------------------------------------------------------------------------------- /external/glfw/examples/glfw.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/glfw.rc -------------------------------------------------------------------------------- /external/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /external/glfw/examples/offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/offscreen.c -------------------------------------------------------------------------------- /external/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/particles.c -------------------------------------------------------------------------------- /external/glfw/examples/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/sharing.c -------------------------------------------------------------------------------- /external/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/splitview.c -------------------------------------------------------------------------------- /external/glfw/examples/triangle-opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/triangle-opengl.c -------------------------------------------------------------------------------- /external/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/examples/wave.c -------------------------------------------------------------------------------- /external/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /external/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /external/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /external/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /external/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /external/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /external/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /external/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /external/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /external/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/context.c -------------------------------------------------------------------------------- /external/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/egl_context.c -------------------------------------------------------------------------------- /external/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/egl_context.h -------------------------------------------------------------------------------- /external/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /external/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /external/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/glx_context.c -------------------------------------------------------------------------------- /external/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/glx_context.h -------------------------------------------------------------------------------- /external/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/init.c -------------------------------------------------------------------------------- /external/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/input.c -------------------------------------------------------------------------------- /external/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/internal.h -------------------------------------------------------------------------------- /external/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /external/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /external/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/mappings.h -------------------------------------------------------------------------------- /external/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /external/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/monitor.c -------------------------------------------------------------------------------- /external/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /external/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /external/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_init.c -------------------------------------------------------------------------------- /external/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /external/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /external/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_platform.h -------------------------------------------------------------------------------- /external/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/null_window.c -------------------------------------------------------------------------------- /external/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /external/glfw/src/osmesa_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/osmesa_context.h -------------------------------------------------------------------------------- /external/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /external/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /external/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/posix_time.c -------------------------------------------------------------------------------- /external/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/posix_time.h -------------------------------------------------------------------------------- /external/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/vulkan.c -------------------------------------------------------------------------------- /external/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /external/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /external/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_init.c -------------------------------------------------------------------------------- /external/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /external/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /external/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /external/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /external/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_time.c -------------------------------------------------------------------------------- /external/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/win32_window.c -------------------------------------------------------------------------------- /external/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/window.c -------------------------------------------------------------------------------- /external/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wl_init.c -------------------------------------------------------------------------------- /external/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /external/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/wl_window.c -------------------------------------------------------------------------------- /external/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/x11_init.c -------------------------------------------------------------------------------- /external/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /external/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /external/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/x11_window.c -------------------------------------------------------------------------------- /external/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /external/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /external/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /external/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /external/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/cursor.c -------------------------------------------------------------------------------- /external/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/empty.c -------------------------------------------------------------------------------- /external/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/events.c -------------------------------------------------------------------------------- /external/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/gamma.c -------------------------------------------------------------------------------- /external/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /external/glfw/tests/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/icon.c -------------------------------------------------------------------------------- /external/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/iconify.c -------------------------------------------------------------------------------- /external/glfw/tests/inputlag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/inputlag.c -------------------------------------------------------------------------------- /external/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /external/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/monitors.c -------------------------------------------------------------------------------- /external/glfw/tests/msaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/msaa.c -------------------------------------------------------------------------------- /external/glfw/tests/opacity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/opacity.c -------------------------------------------------------------------------------- /external/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/reopen.c -------------------------------------------------------------------------------- /external/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/tearing.c -------------------------------------------------------------------------------- /external/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/threads.c -------------------------------------------------------------------------------- /external/glfw/tests/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/timeout.c -------------------------------------------------------------------------------- /external/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/title.c -------------------------------------------------------------------------------- /external/glfw/tests/triangle-vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/triangle-vulkan.c -------------------------------------------------------------------------------- /external/glfw/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glfw/tests/windows.c -------------------------------------------------------------------------------- /external/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/copying.txt -------------------------------------------------------------------------------- /external/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /external/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/common.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /external/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /external/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /external/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /external/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /external/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/glm.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /external/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /external/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /external/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /external/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/integer.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /external/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /external/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /external/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/packing.hpp -------------------------------------------------------------------------------- /external/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/common.h -------------------------------------------------------------------------------- /external/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /external/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /external/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /external/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /external/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /external/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /external/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /external/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /external/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /external/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /external/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /external/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /external/the-forge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/CMakeLists.txt -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/AndroidBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/AndroidBase.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/AndroidFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/AndroidFileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/AndroidLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/AndroidLog.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/AndroidThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/AndroidThread.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/AndroidTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/AndroidTime.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/android_native_app_glue.c -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Android/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Android/android_native_app_glue.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Camera/CameraController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Camera/CameraController.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/Atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/Atomics.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/Compiler.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/DLL.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/GPUConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/GPUConfig.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/RingBuffer.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/Screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/Screenshot.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/TextureContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/TextureContainers.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/ThreadSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/ThreadSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/ThreadSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/ThreadSystem.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Core/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Core/Timer.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/CocoaFileSystem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/CocoaFileSystem.mm -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/DarwinLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/DarwinLog.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/DarwinThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/DarwinThread.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/iOSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/iOSAppDelegate.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/iOSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/iOSAppDelegate.m -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/iOSBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/iOSBase.mm -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/macOSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/macOSAppDelegate.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/macOSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/macOSAppDelegate.m -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Darwin/macOSBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Darwin/macOSBase.mm -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/FileSystem/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/FileSystem/FileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/FileSystem/SystemRun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/FileSystem/SystemRun.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/FileSystem/UnixFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/FileSystem/UnixFileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/FileSystem/ZipFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/FileSystem/ZipFileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Input/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Input/InputSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IApp.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/ICameraController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/ICameraController.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IFileSystem.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IInput.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/ILog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/ILog.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IMemory.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IMiddleware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IMiddleware.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IOperatingSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IOperatingSystem.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IProfiler.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IScreenshot.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/IThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/IThread.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Interfaces/ITime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Interfaces/ITime.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Linux/LinuxBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Linux/LinuxBase.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Linux/LinuxFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Linux/LinuxFileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Linux/LinuxLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Linux/LinuxLog.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Linux/LinuxThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Linux/LinuxThread.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Linux/LinuxTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Linux/LinuxTime.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Logging/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Logging/Log.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Logging/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Logging/Log.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Math/MathTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Math/MathTypes.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/MemoryTracking/MemoryTracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/MemoryTracking/MemoryTracking.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/MemoryTracking/NoMemoryDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/MemoryTracking/NoMemoryDefines.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/GpuProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/GpuProfiler.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/GpuProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/GpuProfiler.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/ProfilerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/ProfilerBase.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/ProfilerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/ProfilerBase.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/ProfilerHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/ProfilerHTML.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Profiler/ProfilerWidgetsUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Profiler/ProfilerWidgetsUI.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsBase.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsFileSystem.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsLog.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsStackTraceDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsStackTraceDump.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsStackTraceDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsStackTraceDump.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsThread.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/OS/Windows/WindowsTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/OS/Windows/WindowsTime.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/CommonShaderReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/CommonShaderReflection.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Direct3D11/Direct3D11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Direct3D11/Direct3D11.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Direct3D12/Direct3D12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Direct3D12/Direct3D12.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/IRay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/IRay.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/IRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/IRenderer.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/IResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/IResourceLoader.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/IShaderReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/IShaderReflection.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Metal/MetalCapBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Metal/MetalCapBuilder.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Metal/MetalRaytracing.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Metal/MetalRaytracing.mm -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Metal/MetalRenderer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Metal/MetalRenderer.mm -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/OpenGLES/GLES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/OpenGLES/GLES.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/OpenGLES/GLESCapsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/OpenGLES/GLESCapsBuilder.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/ResourceLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/ResourceLoader.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Vulkan/Vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Vulkan/Vulkan.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Vulkan/VulkanCapsBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Vulkan/VulkanCapsBuilder.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Renderer/Vulkan/VulkanRaytracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Renderer/Vulkan/VulkanRaytracing.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/D3D12MemoryAllocator/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2019-09-02) 2 | 3 | First published version. 4 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/EABase/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | 3 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/LICENSE -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/any.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/array.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/bitset.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/chrono.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/deque.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/heap.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/list.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/map.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/memory.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/meta.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/queue.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/random.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/ratio.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/set.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/slist.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/sort.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/span.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/stack.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/string.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/tuple.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/EASTL/vector.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/ags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/ags/README.md -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/cgltf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/cgltf/LICENSE -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/cgltf/cgltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/cgltf/cgltf.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Ubuntu/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 62 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Ubuntu/lib/CMakeFiles/gainputstatic.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libgainputstatic.a" 3 | ) 4 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Ubuntu/lib/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 62 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/015aeeede9e53a6c691c3d4c63ce1527/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/56197094a3286c39cefa08f61a884e93/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/56528ad92869db12f12ae104125ecd6a/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/5e6c525a79d5f831db03de8e4587593d/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/69c0271919f719a5c73e1f1ab46a4ddb/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/7a2fbd16fec7f94f853bb4871c9399f7/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/7ca26b6d628846c54feb4e6174538a2d/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/83308563b96df5b02c9e40ccd205b381/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/b1bb06226f7187b8e7664743dc5bbd54/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/e61dd026094efd9119be0f25a2932cf7/INSTALL_force.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/e61dd026094efd9119be0f25a2932cf7/generate.stamp.rule: -------------------------------------------------------------------------------- 1 | # generated from CMake 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/basic/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/dynamic/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/gesture/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/listener/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/recording/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/samples/sync/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/gainput/Win64/test/CMakeFiles/generate.stamp: -------------------------------------------------------------------------------- 1 | # CMake generation timestamp file for this directory. 2 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/hlslparser/Parser/Parser/mcpp-master/SOURCE_GITHUB.txt: -------------------------------------------------------------------------------- 1 | https://github.com/zeroc-ice/mcpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/imgui/imgui.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/meshoptimizer/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /data/ 3 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/nvapi/nvapi.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/ozz-animation/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Google 3 | ... 4 | 5 | -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/ozz-animation/src/geometry/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(runtime) -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/soloud20181119/src/audiosource/wav/stb_vorbis.h: -------------------------------------------------------------------------------- 1 | #define STB_VORBIS_HEADER_ONLY 2 | #include "stb_vorbis.cpp" -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/volk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/volk/README.md -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/volk/volk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/volk/volk.c -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/volk/volk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/volk/volk.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/zip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/zip/README.md -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/zip/UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/zip/UNLICENSE -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/zip/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/zip/miniz.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/zip/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/zip/zip.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/ThirdParty/OpenSource/zip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/ThirdParty/OpenSource/zip/zip.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Tools/FileSystem/IToolFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Tools/FileSystem/IToolFileSystem.h -------------------------------------------------------------------------------- /external/the-forge/Common_3/Tools/SpirvTools/SpirvTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Tools/SpirvTools/SpirvTools.cpp -------------------------------------------------------------------------------- /external/the-forge/Common_3/Tools/SpirvTools/SpirvTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Common_3/Tools/SpirvTools/SpirvTools.h -------------------------------------------------------------------------------- /external/the-forge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/LICENSE -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/AnimatedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/AnimatedObject.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/AnimatedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/AnimatedObject.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Animation.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Animation.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Clip.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Clip.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/ClipController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/ClipController.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/ClipController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/ClipController.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/ClipMask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/ClipMask.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/ClipMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/ClipMask.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Rig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Rig.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/Rig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/Rig.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/SkeletonBatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/SkeletonBatcher.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Animation/SkeletonBatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Animation/SkeletonBatcher.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/BaseComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/BaseComponent.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/BaseComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/BaseComponent.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/ComponentRepresentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/ComponentRepresentation.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/ComponentRepresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/ComponentRepresentation.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/EntityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/EntityManager.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/ECS/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/ECS/EntityManager.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LuaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LuaManager.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LuaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LuaManager.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LuaManagerCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LuaManagerCommon.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LuaManagerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LuaManagerImpl.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LuaManagerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LuaManagerImpl.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/LUA/LunaV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/LUA/LunaV.hpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/PaniniProjection/Panini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/PaniniProjection/Panini.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/PaniniProjection/Panini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/PaniniProjection/Panini.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Text/Fontstash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Text/Fontstash.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Text/Fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Text/Fontstash.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/Text/Shaders/GLES/fontstash.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/Text/Shaders/GLES/fontstash.frag -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/AppUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/AppUI.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/AppUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/AppUI.h -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/ImguiGUIDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/ImguiGUIDriver.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/D3D11/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/D3D11/imgui.frag -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/D3D11/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/D3D11/imgui.vert -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/D3D12/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/D3D12/imgui.frag -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/D3D12/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/D3D12/imgui.vert -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/GLES/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/GLES/imgui.frag -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/GLES/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/GLES/imgui.vert -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/Vulkan/imgui.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/Vulkan/imgui.frag -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/Shaders/Vulkan/imgui.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/Shaders/Vulkan/imgui.vert -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/imgui_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/imgui_user.cpp -------------------------------------------------------------------------------- /external/the-forge/Middleware_3/UI/imgui_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/external/the-forge/Middleware_3/UI/imgui_user.h -------------------------------------------------------------------------------- /screenshots/demo_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/screenshots/demo_screenshot.png -------------------------------------------------------------------------------- /src/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/demo.cpp -------------------------------------------------------------------------------- /src/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/demo.h -------------------------------------------------------------------------------- /src/interfaces/linux/linuxBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/linux/linuxBase.cpp -------------------------------------------------------------------------------- /src/interfaces/linux/linuxFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/linux/linuxFileSystem.cpp -------------------------------------------------------------------------------- /src/interfaces/linux/linuxLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/linux/linuxLog.cpp -------------------------------------------------------------------------------- /src/interfaces/linux/linuxThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/linux/linuxThread.cpp -------------------------------------------------------------------------------- /src/interfaces/linux/linuxTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/linux/linuxTime.cpp -------------------------------------------------------------------------------- /src/interfaces/windows/windowsBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/windows/windowsBase.cpp -------------------------------------------------------------------------------- /src/interfaces/windows/windowsFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/windows/windowsFileSystem.cpp -------------------------------------------------------------------------------- /src/interfaces/windows/windowsLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/windows/windowsLog.cpp -------------------------------------------------------------------------------- /src/interfaces/windows/windowsThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/windows/windowsThread.cpp -------------------------------------------------------------------------------- /src/interfaces/windows/windowsTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/interfaces/windows/windowsTime.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rextimmy/the-forge-glfw/HEAD/src/main.cpp --------------------------------------------------------------------------------