├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── INSTALL.md ├── KX-Vision.sln ├── KX-Vision.vcxproj ├── LICENSE ├── README.md ├── docs ├── concepts │ └── multithreading-model.md ├── dual-mode-build.md ├── engine_internals │ ├── data-access-patterns.md │ ├── game-thread-hook.md │ ├── index.md │ └── unit-systems.md └── index.md ├── images ├── gui.jpg └── gui_v2.jpg ├── libs ├── Catch2 │ ├── catch_amalgamated.cpp │ └── catch_amalgamated.hpp ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── imgui_draw.cpp │ ├── imgui_impl_dx11.cpp │ ├── imgui_impl_dx11.h │ ├── imgui_impl_win32.cpp │ ├── imgui_impl_win32.h │ ├── imgui_internal.h │ ├── imgui_stdlib.cpp │ ├── imgui_stdlib.h │ ├── imgui_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── MinHook │ ├── MinHook.h │ ├── MinHook.x64.dll │ ├── MinHook.x64.lib │ └── libMinHook.x64.lib ├── ankerl │ ├── stl.h │ └── unordered_dense.h ├── glm │ ├── CMakeLists.txt │ ├── common.hpp │ ├── copying.txt │ ├── detail │ │ ├── _features.hpp │ │ ├── _fixes.hpp │ │ ├── _noise.hpp │ │ ├── _swizzle.hpp │ │ ├── _swizzle_func.hpp │ │ ├── _vectorize.hpp │ │ ├── compute_common.hpp │ │ ├── compute_vector_decl.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_vectorize.hpp │ │ ├── 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_int2x2.hpp │ │ ├── matrix_int2x2_sized.hpp │ │ ├── matrix_int2x3.hpp │ │ ├── matrix_int2x3_sized.hpp │ │ ├── matrix_int2x4.hpp │ │ ├── matrix_int2x4_sized.hpp │ │ ├── matrix_int3x2.hpp │ │ ├── matrix_int3x2_sized.hpp │ │ ├── matrix_int3x3.hpp │ │ ├── matrix_int3x3_sized.hpp │ │ ├── matrix_int3x4.hpp │ │ ├── matrix_int3x4_sized.hpp │ │ ├── matrix_int4x2.hpp │ │ ├── matrix_int4x2_sized.hpp │ │ ├── matrix_int4x3.hpp │ │ ├── matrix_int4x3_sized.hpp │ │ ├── matrix_int4x4.hpp │ │ ├── matrix_int4x4_sized.hpp │ │ ├── matrix_integer.hpp │ │ ├── matrix_integer.inl │ │ ├── matrix_projection.hpp │ │ ├── matrix_projection.inl │ │ ├── matrix_relational.hpp │ │ ├── matrix_relational.inl │ │ ├── matrix_transform.hpp │ │ ├── matrix_transform.inl │ │ ├── matrix_uint2x2.hpp │ │ ├── matrix_uint2x2_sized.hpp │ │ ├── matrix_uint2x3.hpp │ │ ├── matrix_uint2x3_sized.hpp │ │ ├── matrix_uint2x4.hpp │ │ ├── matrix_uint2x4_sized.hpp │ │ ├── matrix_uint3x2.hpp │ │ ├── matrix_uint3x2_sized.hpp │ │ ├── matrix_uint3x3.hpp │ │ ├── matrix_uint3x3_sized.hpp │ │ ├── matrix_uint3x4.hpp │ │ ├── matrix_uint3x4_sized.hpp │ │ ├── matrix_uint4x2.hpp │ │ ├── matrix_uint4x2_sized.hpp │ │ ├── matrix_uint4x3.hpp │ │ ├── matrix_uint4x3_sized.hpp │ │ ├── matrix_uint4x4.hpp │ │ ├── matrix_uint4x4_sized.hpp │ │ ├── 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_reciprocal.hpp │ │ ├── scalar_reciprocal.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_sized.hpp │ │ ├── vector_int2.hpp │ │ ├── vector_int2_sized.hpp │ │ ├── vector_int3.hpp │ │ ├── vector_int3_sized.hpp │ │ ├── vector_int4.hpp │ │ ├── vector_int4_sized.hpp │ │ ├── vector_integer.hpp │ │ ├── vector_integer.inl │ │ ├── vector_packing.hpp │ │ ├── vector_packing.inl │ │ ├── vector_reciprocal.hpp │ │ ├── vector_reciprocal.inl │ │ ├── vector_relational.hpp │ │ ├── vector_relational.inl │ │ ├── vector_uint1.hpp │ │ ├── vector_uint1_sized.hpp │ │ ├── vector_uint2.hpp │ │ ├── vector_uint2_sized.hpp │ │ ├── vector_uint3.hpp │ │ ├── vector_uint3_sized.hpp │ │ ├── vector_uint4.hpp │ │ ├── vector_uint4_sized.hpp │ │ ├── vector_ulp.hpp │ │ └── vector_ulp.inl │ ├── fwd.hpp │ ├── geometric.hpp │ ├── glm.cppm │ ├── 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 │ │ ├── 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 │ │ ├── optimum_pow.hpp │ │ ├── optimum_pow.inl │ │ ├── orthonormalize.hpp │ │ ├── orthonormalize.inl │ │ ├── pca.hpp │ │ ├── pca.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 ├── gw2al │ ├── gw2al_api.h │ └── gw2al_d3d9_wrapper.h ├── nlohmann │ └── json.hpp └── spdlog │ ├── async.h │ ├── async_logger-inl.h │ ├── async_logger.h │ ├── cfg │ ├── argv.h │ ├── env.h │ ├── helpers-inl.h │ └── helpers.h │ ├── common-inl.h │ ├── common.h │ ├── details │ ├── backtracer-inl.h │ ├── backtracer.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper-inl.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg-inl.h │ ├── log_msg.h │ ├── log_msg_buffer-inl.h │ ├── log_msg_buffer.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os-inl.h │ ├── os.h │ ├── periodic_worker-inl.h │ ├── periodic_worker.h │ ├── registry-inl.h │ ├── registry.h │ ├── synchronous_factory.h │ ├── tcp_client-windows.h │ ├── tcp_client.h │ ├── thread_pool-inl.h │ ├── thread_pool.h │ ├── udp_client-windows.h │ ├── udp_client.h │ └── windows_include.h │ ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── fmt.license.rst │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ ├── chrono.h │ ├── compile.h │ ├── fmt.h │ ├── ostr.h │ ├── ranges.h │ ├── std.h │ └── xchar.h │ ├── formatter.h │ ├── fwd.h │ ├── logger-inl.h │ ├── logger.h │ ├── mdc.h │ ├── pattern_formatter-inl.h │ ├── pattern_formatter.h │ ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink-inl.h │ ├── ansicolor_sink.h │ ├── base_sink-inl.h │ ├── base_sink.h │ ├── basic_file_sink-inl.h │ ├── basic_file_sink.h │ ├── callback_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── dup_filter_sink.h │ ├── hourly_file_sink.h │ ├── kafka_sink.h │ ├── mongo_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── qt_sinks.h │ ├── ringbuffer_sink.h │ ├── rotating_file_sink-inl.h │ ├── rotating_file_sink.h │ ├── sink-inl.h │ ├── sink.h │ ├── stdout_color_sinks-inl.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks-inl.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ ├── systemd_sink.h │ ├── tcp_sink.h │ ├── udp_sink.h │ ├── win_eventlog_sink.h │ ├── wincolor_sink-inl.h │ └── wincolor_sink.h │ ├── spdlog-inl.h │ ├── spdlog.h │ ├── stopwatch.h │ ├── tweakme.h │ └── version.h ├── scripts ├── _archive_generate_item_headers.py ├── fetch_api_data.py └── generate_stat_headers.py └── src ├── Core ├── AdaptiveFarPlaneCalculator.cpp ├── AdaptiveFarPlaneCalculator.h ├── AppLifecycleManager.cpp ├── AppLifecycleManager.h ├── AppState.cpp ├── AppState.h ├── Bootstrap.cpp ├── Bootstrap.h ├── Config.h ├── FrameCoordinator.cpp ├── FrameCoordinator.h ├── GW2AL_Integration.cpp ├── Main.cpp ├── Settings.h ├── Settings │ ├── ESPSettings.h │ ├── RenderSettings.h │ └── SettingsConstants.h ├── SettingsManager.cpp └── SettingsManager.h ├── Features └── Combat │ ├── CombatConstants.h │ ├── CombatLogic.cpp │ ├── CombatLogic.h │ ├── CombatState.h │ ├── CombatStateKey.h │ ├── CombatStateManager.cpp │ └── CombatStateManager.h ├── Game ├── GameEnums.h ├── Generated │ ├── APIData.h │ ├── EnumsAndStructs.h │ └── StatData.h ├── Havok │ ├── HavokEnums.h │ └── HavokOffsets.h ├── SDK │ ├── AgentStructs.h │ ├── CharacterStructs.h │ ├── ContextStructs.h │ ├── EquipmentStructs.h │ ├── GadgetStructs.h │ ├── HavokStructs.h │ ├── ItemStructs.h │ └── StatStructs.h ├── SdkStructs.h └── Services │ ├── Camera │ ├── Camera.cpp │ └── Camera.h │ └── Mumble │ ├── MumbleLink.h │ ├── MumbleLinkManager.cpp │ └── MumbleLinkManager.h ├── Hooking ├── D3DRenderHook.h ├── D3DRenderHook_DLL.cpp ├── D3DRenderHook_Shared.cpp ├── D3DRenderHook_WndProc.cpp ├── GW2AL │ └── d3d9_wrapper_structs.h ├── HookManager.cpp ├── HookManager.h ├── Hooks.cpp └── Hooks.h ├── Memory ├── AddressManager.cpp ├── AddressManager.h ├── ForeignClass.h ├── SafeGameArray.h ├── Safety.h ├── Scanner.cpp └── Scanner.h ├── Rendering ├── Core │ ├── MasterRenderer.cpp │ ├── MasterRenderer.h │ ├── StageRenderer.cpp │ └── StageRenderer.h ├── Data │ ├── Entities │ │ ├── RenderableAttackTarget.h │ │ ├── RenderableEntity.h │ │ ├── RenderableGadget.h │ │ ├── RenderableItem.h │ │ ├── RenderableNpc.h │ │ └── RenderablePlayer.h │ ├── EntityTypes.h │ ├── FrameData.h │ ├── HealthBarAnimationState.h │ ├── PlayerRenderData.h │ └── RenderableData.h ├── Extraction │ ├── DataExtractor.cpp │ ├── DataExtractor.h │ ├── EntityExtractor.cpp │ └── EntityExtractor.h ├── Logic │ ├── Animations │ │ ├── HealthBarAnimations.cpp │ │ └── HealthBarAnimations.h │ ├── EntityFilter.cpp │ ├── EntityFilter.h │ ├── FilterSettings.h │ ├── StyleCalculator.cpp │ └── StyleCalculator.h ├── Presentation │ ├── Formatting.cpp │ ├── Formatting.h │ ├── InfoBuilder.cpp │ ├── InfoBuilder.h │ ├── Styling.cpp │ └── Styling.h ├── Renderers │ ├── EnergyBarRenderer.cpp │ ├── EnergyBarRenderer.h │ ├── EntityComponentRenderer.cpp │ ├── EntityComponentRenderer.h │ ├── HealthBarRenderer.cpp │ ├── HealthBarRenderer.h │ ├── LayoutCursor.h │ ├── ScreenProjector.cpp │ ├── ScreenProjector.h │ ├── ShapeRenderer.cpp │ ├── ShapeRenderer.h │ ├── TextRenderer.cpp │ ├── TextRenderer.h │ ├── TrailRenderer.cpp │ └── TrailRenderer.h ├── Shared │ ├── AnimationHelpers.h │ ├── ColorConstants.h │ ├── LayoutConstants.h │ ├── MathUtils.cpp │ ├── MathUtils.h │ ├── RenderSettingsHelper.h │ └── ScalingConstants.h └── UI │ ├── Backend │ ├── D3DState.h │ ├── ImGuiStyle.cpp │ ├── ImGuiStyle.h │ ├── OverlayWindow.cpp │ └── OverlayWindow.h │ ├── GuiHelpers.cpp │ ├── GuiHelpers.h │ ├── Tabs │ ├── AppearanceTab.cpp │ ├── AppearanceTab.h │ ├── InfoTab.cpp │ ├── InfoTab.h │ ├── NpcsTab.cpp │ ├── NpcsTab.h │ ├── ObjectsTab.cpp │ ├── ObjectsTab.h │ ├── PlayersTab.cpp │ ├── PlayersTab.h │ ├── SettingsTab.cpp │ ├── SettingsTab.h │ ├── ValidationTab.cpp │ └── ValidationTab.h │ └── UIConstants.h ├── Tests └── OffsetValidationTests.cpp └── Utils ├── Console.cpp ├── Console.h ├── DebugLogger.cpp ├── DebugLogger.h ├── ObjectPool.h ├── StringHelpers.h ├── TestRunner.cpp └── UnitConversion.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Krixx1337] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/INSTALL.md -------------------------------------------------------------------------------- /KX-Vision.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/KX-Vision.sln -------------------------------------------------------------------------------- /KX-Vision.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/KX-Vision.vcxproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/README.md -------------------------------------------------------------------------------- /docs/concepts/multithreading-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/concepts/multithreading-model.md -------------------------------------------------------------------------------- /docs/dual-mode-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/dual-mode-build.md -------------------------------------------------------------------------------- /docs/engine_internals/data-access-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/engine_internals/data-access-patterns.md -------------------------------------------------------------------------------- /docs/engine_internals/game-thread-hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/engine_internals/game-thread-hook.md -------------------------------------------------------------------------------- /docs/engine_internals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/engine_internals/index.md -------------------------------------------------------------------------------- /docs/engine_internals/unit-systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/engine_internals/unit-systems.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/docs/index.md -------------------------------------------------------------------------------- /images/gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/images/gui.jpg -------------------------------------------------------------------------------- /images/gui_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/images/gui_v2.jpg -------------------------------------------------------------------------------- /libs/Catch2/catch_amalgamated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/Catch2/catch_amalgamated.cpp -------------------------------------------------------------------------------- /libs/Catch2/catch_amalgamated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/Catch2/catch_amalgamated.hpp -------------------------------------------------------------------------------- /libs/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imconfig.h -------------------------------------------------------------------------------- /libs/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui.h -------------------------------------------------------------------------------- /libs/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /libs/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /libs/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /libs/ImGui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_stdlib.h -------------------------------------------------------------------------------- /libs/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /libs/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /libs/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /libs/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /libs/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /libs/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/MinHook/MinHook.h -------------------------------------------------------------------------------- /libs/MinHook/MinHook.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/MinHook/MinHook.x64.dll -------------------------------------------------------------------------------- /libs/MinHook/MinHook.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/MinHook/MinHook.x64.lib -------------------------------------------------------------------------------- /libs/MinHook/libMinHook.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/MinHook/libMinHook.x64.lib -------------------------------------------------------------------------------- /libs/ankerl/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ankerl/stl.h -------------------------------------------------------------------------------- /libs/ankerl/unordered_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/ankerl/unordered_dense.h -------------------------------------------------------------------------------- /libs/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/CMakeLists.txt -------------------------------------------------------------------------------- /libs/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/common.hpp -------------------------------------------------------------------------------- /libs/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/copying.txt -------------------------------------------------------------------------------- /libs/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_features.hpp -------------------------------------------------------------------------------- /libs/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /libs/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /libs/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /libs/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /libs/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /libs/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /libs/glm/detail/compute_vector_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/compute_vector_decl.hpp -------------------------------------------------------------------------------- /libs/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /libs/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_common.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /libs/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/glm.cpp -------------------------------------------------------------------------------- /libs/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /libs/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/setup.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_half.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /libs/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /libs/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /libs/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/exponential.hpp -------------------------------------------------------------------------------- /libs/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext.hpp -------------------------------------------------------------------------------- /libs/glm/ext/_matrix_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/_matrix_vectorize.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /libs/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /libs/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /libs/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /libs/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /libs/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /libs/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /libs/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /libs/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/fwd.hpp -------------------------------------------------------------------------------- /libs/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/geometric.hpp -------------------------------------------------------------------------------- /libs/glm/glm.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/glm.cppm -------------------------------------------------------------------------------- /libs/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/glm.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /libs/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /libs/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/constants.inl -------------------------------------------------------------------------------- /libs/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /libs/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/integer.inl -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /libs/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/noise.inl -------------------------------------------------------------------------------- /libs/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/packing.inl -------------------------------------------------------------------------------- /libs/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /libs/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/random.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/random.inl -------------------------------------------------------------------------------- /libs/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/round.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/round.inl -------------------------------------------------------------------------------- /libs/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libs/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /libs/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /libs/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /libs/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /libs/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/bit.inl -------------------------------------------------------------------------------- /libs/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /libs/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /libs/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /libs/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /libs/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/common.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/common.inl -------------------------------------------------------------------------------- /libs/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /libs/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /libs/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /libs/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/easing.inl -------------------------------------------------------------------------------- /libs/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /libs/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/extend.inl -------------------------------------------------------------------------------- /libs/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /libs/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /libs/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /libs/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /libs/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /libs/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /libs/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/functions.inl -------------------------------------------------------------------------------- /libs/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /libs/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /libs/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/hash.inl -------------------------------------------------------------------------------- /libs/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/integer.inl -------------------------------------------------------------------------------- /libs/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /libs/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/io.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/io.inl -------------------------------------------------------------------------------- /libs/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /libs/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /libs/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/norm.inl -------------------------------------------------------------------------------- /libs/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/normal.inl -------------------------------------------------------------------------------- /libs/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /libs/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /libs/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /libs/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/pca.inl -------------------------------------------------------------------------------- /libs/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /libs/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /libs/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/projection.inl -------------------------------------------------------------------------------- /libs/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /libs/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/range.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /libs/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /libs/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /libs/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /libs/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/spline.inl -------------------------------------------------------------------------------- /libs/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libs/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /libs/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/texture.inl -------------------------------------------------------------------------------- /libs/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/transform.inl -------------------------------------------------------------------------------- /libs/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /libs/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /libs/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /libs/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /libs/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /libs/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /libs/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /libs/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/integer.hpp -------------------------------------------------------------------------------- /libs/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat2x2.hpp -------------------------------------------------------------------------------- /libs/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat2x3.hpp -------------------------------------------------------------------------------- /libs/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat2x4.hpp -------------------------------------------------------------------------------- /libs/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat3x2.hpp -------------------------------------------------------------------------------- /libs/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat3x3.hpp -------------------------------------------------------------------------------- /libs/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat3x4.hpp -------------------------------------------------------------------------------- /libs/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat4x2.hpp -------------------------------------------------------------------------------- /libs/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat4x3.hpp -------------------------------------------------------------------------------- /libs/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/mat4x4.hpp -------------------------------------------------------------------------------- /libs/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/matrix.hpp -------------------------------------------------------------------------------- /libs/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/packing.hpp -------------------------------------------------------------------------------- /libs/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/common.h -------------------------------------------------------------------------------- /libs/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/exponential.h -------------------------------------------------------------------------------- /libs/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/geometric.h -------------------------------------------------------------------------------- /libs/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/integer.h -------------------------------------------------------------------------------- /libs/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/matrix.h -------------------------------------------------------------------------------- /libs/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/neon.h -------------------------------------------------------------------------------- /libs/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/packing.h -------------------------------------------------------------------------------- /libs/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/platform.h -------------------------------------------------------------------------------- /libs/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /libs/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /libs/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/trigonometric.hpp -------------------------------------------------------------------------------- /libs/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/vec2.hpp -------------------------------------------------------------------------------- /libs/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/vec3.hpp -------------------------------------------------------------------------------- /libs/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/vec4.hpp -------------------------------------------------------------------------------- /libs/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/glm/vector_relational.hpp -------------------------------------------------------------------------------- /libs/gw2al/gw2al_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/gw2al/gw2al_api.h -------------------------------------------------------------------------------- /libs/gw2al/gw2al_d3d9_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/gw2al/gw2al_d3d9_wrapper.h -------------------------------------------------------------------------------- /libs/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/nlohmann/json.hpp -------------------------------------------------------------------------------- /libs/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/async.h -------------------------------------------------------------------------------- /libs/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /libs/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/async_logger.h -------------------------------------------------------------------------------- /libs/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /libs/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/cfg/env.h -------------------------------------------------------------------------------- /libs/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /libs/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /libs/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/common-inl.h -------------------------------------------------------------------------------- /libs/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/common.h -------------------------------------------------------------------------------- /libs/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /libs/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /libs/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /libs/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /libs/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /libs/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /libs/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /libs/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /libs/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /libs/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/os.h -------------------------------------------------------------------------------- /libs/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /libs/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/registry.h -------------------------------------------------------------------------------- /libs/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /libs/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /libs/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /libs/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /libs/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /libs/spdlog/details/udp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/udp_client-windows.h -------------------------------------------------------------------------------- /libs/spdlog/details/udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/udp_client.h -------------------------------------------------------------------------------- /libs/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/base.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/fmt.license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/fmt.license.rst -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/std.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/ranges.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/std.h -------------------------------------------------------------------------------- /libs/spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /libs/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/formatter.h -------------------------------------------------------------------------------- /libs/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/fwd.h -------------------------------------------------------------------------------- /libs/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/logger-inl.h -------------------------------------------------------------------------------- /libs/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/logger.h -------------------------------------------------------------------------------- /libs/spdlog/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/mdc.h -------------------------------------------------------------------------------- /libs/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /libs/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/callback_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/callback_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/kafka_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/kafka_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/udp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/udp_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /libs/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /libs/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /libs/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/spdlog.h -------------------------------------------------------------------------------- /libs/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/stopwatch.h -------------------------------------------------------------------------------- /libs/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/tweakme.h -------------------------------------------------------------------------------- /libs/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/libs/spdlog/version.h -------------------------------------------------------------------------------- /scripts/_archive_generate_item_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/scripts/_archive_generate_item_headers.py -------------------------------------------------------------------------------- /scripts/fetch_api_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/scripts/fetch_api_data.py -------------------------------------------------------------------------------- /scripts/generate_stat_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/scripts/generate_stat_headers.py -------------------------------------------------------------------------------- /src/Core/AdaptiveFarPlaneCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AdaptiveFarPlaneCalculator.cpp -------------------------------------------------------------------------------- /src/Core/AdaptiveFarPlaneCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AdaptiveFarPlaneCalculator.h -------------------------------------------------------------------------------- /src/Core/AppLifecycleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AppLifecycleManager.cpp -------------------------------------------------------------------------------- /src/Core/AppLifecycleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AppLifecycleManager.h -------------------------------------------------------------------------------- /src/Core/AppState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AppState.cpp -------------------------------------------------------------------------------- /src/Core/AppState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/AppState.h -------------------------------------------------------------------------------- /src/Core/Bootstrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Bootstrap.cpp -------------------------------------------------------------------------------- /src/Core/Bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Bootstrap.h -------------------------------------------------------------------------------- /src/Core/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Config.h -------------------------------------------------------------------------------- /src/Core/FrameCoordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/FrameCoordinator.cpp -------------------------------------------------------------------------------- /src/Core/FrameCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/FrameCoordinator.h -------------------------------------------------------------------------------- /src/Core/GW2AL_Integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/GW2AL_Integration.cpp -------------------------------------------------------------------------------- /src/Core/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Main.cpp -------------------------------------------------------------------------------- /src/Core/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Settings.h -------------------------------------------------------------------------------- /src/Core/Settings/ESPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Settings/ESPSettings.h -------------------------------------------------------------------------------- /src/Core/Settings/RenderSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Settings/RenderSettings.h -------------------------------------------------------------------------------- /src/Core/Settings/SettingsConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/Settings/SettingsConstants.h -------------------------------------------------------------------------------- /src/Core/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/SettingsManager.cpp -------------------------------------------------------------------------------- /src/Core/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Core/SettingsManager.h -------------------------------------------------------------------------------- /src/Features/Combat/CombatConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatConstants.h -------------------------------------------------------------------------------- /src/Features/Combat/CombatLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatLogic.cpp -------------------------------------------------------------------------------- /src/Features/Combat/CombatLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatLogic.h -------------------------------------------------------------------------------- /src/Features/Combat/CombatState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatState.h -------------------------------------------------------------------------------- /src/Features/Combat/CombatStateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatStateKey.h -------------------------------------------------------------------------------- /src/Features/Combat/CombatStateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatStateManager.cpp -------------------------------------------------------------------------------- /src/Features/Combat/CombatStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Features/Combat/CombatStateManager.h -------------------------------------------------------------------------------- /src/Game/GameEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/GameEnums.h -------------------------------------------------------------------------------- /src/Game/Generated/APIData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Generated/APIData.h -------------------------------------------------------------------------------- /src/Game/Generated/EnumsAndStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Generated/EnumsAndStructs.h -------------------------------------------------------------------------------- /src/Game/Generated/StatData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Generated/StatData.h -------------------------------------------------------------------------------- /src/Game/Havok/HavokEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Havok/HavokEnums.h -------------------------------------------------------------------------------- /src/Game/Havok/HavokOffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Havok/HavokOffsets.h -------------------------------------------------------------------------------- /src/Game/SDK/AgentStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/AgentStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/CharacterStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/CharacterStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/ContextStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/ContextStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/EquipmentStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/EquipmentStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/GadgetStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/GadgetStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/HavokStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/HavokStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/ItemStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/ItemStructs.h -------------------------------------------------------------------------------- /src/Game/SDK/StatStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SDK/StatStructs.h -------------------------------------------------------------------------------- /src/Game/SdkStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/SdkStructs.h -------------------------------------------------------------------------------- /src/Game/Services/Camera/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Services/Camera/Camera.cpp -------------------------------------------------------------------------------- /src/Game/Services/Camera/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Services/Camera/Camera.h -------------------------------------------------------------------------------- /src/Game/Services/Mumble/MumbleLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Services/Mumble/MumbleLink.h -------------------------------------------------------------------------------- /src/Game/Services/Mumble/MumbleLinkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Services/Mumble/MumbleLinkManager.cpp -------------------------------------------------------------------------------- /src/Game/Services/Mumble/MumbleLinkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Game/Services/Mumble/MumbleLinkManager.h -------------------------------------------------------------------------------- /src/Hooking/D3DRenderHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/D3DRenderHook.h -------------------------------------------------------------------------------- /src/Hooking/D3DRenderHook_DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/D3DRenderHook_DLL.cpp -------------------------------------------------------------------------------- /src/Hooking/D3DRenderHook_Shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/D3DRenderHook_Shared.cpp -------------------------------------------------------------------------------- /src/Hooking/D3DRenderHook_WndProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/D3DRenderHook_WndProc.cpp -------------------------------------------------------------------------------- /src/Hooking/GW2AL/d3d9_wrapper_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/GW2AL/d3d9_wrapper_structs.h -------------------------------------------------------------------------------- /src/Hooking/HookManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/HookManager.cpp -------------------------------------------------------------------------------- /src/Hooking/HookManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/HookManager.h -------------------------------------------------------------------------------- /src/Hooking/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/Hooks.cpp -------------------------------------------------------------------------------- /src/Hooking/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Hooking/Hooks.h -------------------------------------------------------------------------------- /src/Memory/AddressManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/AddressManager.cpp -------------------------------------------------------------------------------- /src/Memory/AddressManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/AddressManager.h -------------------------------------------------------------------------------- /src/Memory/ForeignClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/ForeignClass.h -------------------------------------------------------------------------------- /src/Memory/SafeGameArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/SafeGameArray.h -------------------------------------------------------------------------------- /src/Memory/Safety.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/Safety.h -------------------------------------------------------------------------------- /src/Memory/Scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/Scanner.cpp -------------------------------------------------------------------------------- /src/Memory/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Memory/Scanner.h -------------------------------------------------------------------------------- /src/Rendering/Core/MasterRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Core/MasterRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Core/MasterRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Core/MasterRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Core/StageRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Core/StageRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Core/StageRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Core/StageRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderableAttackTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderableAttackTarget.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderableEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderableEntity.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderableGadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderableGadget.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderableItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderableItem.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderableNpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderableNpc.h -------------------------------------------------------------------------------- /src/Rendering/Data/Entities/RenderablePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/Entities/RenderablePlayer.h -------------------------------------------------------------------------------- /src/Rendering/Data/EntityTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/EntityTypes.h -------------------------------------------------------------------------------- /src/Rendering/Data/FrameData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/FrameData.h -------------------------------------------------------------------------------- /src/Rendering/Data/HealthBarAnimationState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/HealthBarAnimationState.h -------------------------------------------------------------------------------- /src/Rendering/Data/PlayerRenderData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/PlayerRenderData.h -------------------------------------------------------------------------------- /src/Rendering/Data/RenderableData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Data/RenderableData.h -------------------------------------------------------------------------------- /src/Rendering/Extraction/DataExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Extraction/DataExtractor.cpp -------------------------------------------------------------------------------- /src/Rendering/Extraction/DataExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Extraction/DataExtractor.h -------------------------------------------------------------------------------- /src/Rendering/Extraction/EntityExtractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Extraction/EntityExtractor.cpp -------------------------------------------------------------------------------- /src/Rendering/Extraction/EntityExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Extraction/EntityExtractor.h -------------------------------------------------------------------------------- /src/Rendering/Logic/Animations/HealthBarAnimations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/Animations/HealthBarAnimations.cpp -------------------------------------------------------------------------------- /src/Rendering/Logic/Animations/HealthBarAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/Animations/HealthBarAnimations.h -------------------------------------------------------------------------------- /src/Rendering/Logic/EntityFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/EntityFilter.cpp -------------------------------------------------------------------------------- /src/Rendering/Logic/EntityFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/EntityFilter.h -------------------------------------------------------------------------------- /src/Rendering/Logic/FilterSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/FilterSettings.h -------------------------------------------------------------------------------- /src/Rendering/Logic/StyleCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/StyleCalculator.cpp -------------------------------------------------------------------------------- /src/Rendering/Logic/StyleCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Logic/StyleCalculator.h -------------------------------------------------------------------------------- /src/Rendering/Presentation/Formatting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/Formatting.cpp -------------------------------------------------------------------------------- /src/Rendering/Presentation/Formatting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/Formatting.h -------------------------------------------------------------------------------- /src/Rendering/Presentation/InfoBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/InfoBuilder.cpp -------------------------------------------------------------------------------- /src/Rendering/Presentation/InfoBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/InfoBuilder.h -------------------------------------------------------------------------------- /src/Rendering/Presentation/Styling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/Styling.cpp -------------------------------------------------------------------------------- /src/Rendering/Presentation/Styling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Presentation/Styling.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/EnergyBarRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/EnergyBarRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/EnergyBarRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/EnergyBarRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/EntityComponentRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/EntityComponentRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/EntityComponentRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/EntityComponentRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/HealthBarRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/HealthBarRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/HealthBarRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/HealthBarRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/LayoutCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/LayoutCursor.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/ScreenProjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/ScreenProjector.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/ScreenProjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/ScreenProjector.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/ShapeRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/ShapeRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/ShapeRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/ShapeRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/TextRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/TextRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/TextRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/TextRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Renderers/TrailRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/TrailRenderer.cpp -------------------------------------------------------------------------------- /src/Rendering/Renderers/TrailRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Renderers/TrailRenderer.h -------------------------------------------------------------------------------- /src/Rendering/Shared/AnimationHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/AnimationHelpers.h -------------------------------------------------------------------------------- /src/Rendering/Shared/ColorConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/ColorConstants.h -------------------------------------------------------------------------------- /src/Rendering/Shared/LayoutConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/LayoutConstants.h -------------------------------------------------------------------------------- /src/Rendering/Shared/MathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/MathUtils.cpp -------------------------------------------------------------------------------- /src/Rendering/Shared/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/MathUtils.h -------------------------------------------------------------------------------- /src/Rendering/Shared/RenderSettingsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/RenderSettingsHelper.h -------------------------------------------------------------------------------- /src/Rendering/Shared/ScalingConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/Shared/ScalingConstants.h -------------------------------------------------------------------------------- /src/Rendering/UI/Backend/D3DState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Backend/D3DState.h -------------------------------------------------------------------------------- /src/Rendering/UI/Backend/ImGuiStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Backend/ImGuiStyle.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Backend/ImGuiStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Backend/ImGuiStyle.h -------------------------------------------------------------------------------- /src/Rendering/UI/Backend/OverlayWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Backend/OverlayWindow.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Backend/OverlayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Backend/OverlayWindow.h -------------------------------------------------------------------------------- /src/Rendering/UI/GuiHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/GuiHelpers.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/GuiHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/GuiHelpers.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/AppearanceTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/AppearanceTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/AppearanceTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/AppearanceTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/InfoTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/InfoTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/InfoTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/InfoTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/NpcsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/NpcsTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/NpcsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/NpcsTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/ObjectsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/ObjectsTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/ObjectsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/ObjectsTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/PlayersTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/PlayersTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/PlayersTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/PlayersTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/SettingsTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/SettingsTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/SettingsTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/SettingsTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/ValidationTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/ValidationTab.cpp -------------------------------------------------------------------------------- /src/Rendering/UI/Tabs/ValidationTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/Tabs/ValidationTab.h -------------------------------------------------------------------------------- /src/Rendering/UI/UIConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Rendering/UI/UIConstants.h -------------------------------------------------------------------------------- /src/Tests/OffsetValidationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Tests/OffsetValidationTests.cpp -------------------------------------------------------------------------------- /src/Utils/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/Console.cpp -------------------------------------------------------------------------------- /src/Utils/Console.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace kx { 4 | void SetupConsole(); 5 | } 6 | -------------------------------------------------------------------------------- /src/Utils/DebugLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/DebugLogger.cpp -------------------------------------------------------------------------------- /src/Utils/DebugLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/DebugLogger.h -------------------------------------------------------------------------------- /src/Utils/ObjectPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/ObjectPool.h -------------------------------------------------------------------------------- /src/Utils/StringHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/StringHelpers.h -------------------------------------------------------------------------------- /src/Utils/TestRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/TestRunner.cpp -------------------------------------------------------------------------------- /src/Utils/UnitConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kxtools/kx-vision/HEAD/src/Utils/UnitConversion.h --------------------------------------------------------------------------------