├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── cmake └── DynamoRIOConfig.cmake ├── doc └── Doxyfile ├── include ├── GL │ ├── glew.h │ ├── glxew.h │ └── wglew.h ├── d3d11.h ├── d3d9.h ├── d3d9caps.h ├── d3d9types.h ├── d3dx9.h ├── d3dx9anim.h ├── d3dx9core.h ├── d3dx9effect.h ├── d3dx9math.h ├── d3dx9math.inl ├── d3dx9mesh.h ├── d3dx9shader.h ├── d3dx9shape.h ├── d3dx9tex.h ├── d3dx9xof.h └── dynamorio │ ├── annotations │ ├── dr_annotations.c │ ├── dr_annotations.h │ └── dr_annotations_asm.h │ ├── dr_annotation.h │ ├── dr_api.h │ ├── dr_app.h │ ├── dr_config.h │ ├── dr_defines.h │ ├── dr_events.h │ ├── dr_frontend.h │ ├── dr_inject.h │ ├── dr_ir_decode.h │ ├── dr_ir_disassemble.h │ ├── dr_ir_encode.h │ ├── dr_ir_instr.h │ ├── dr_ir_instr_inline.h │ ├── dr_ir_instrlist.h │ ├── dr_ir_macros.h │ ├── dr_ir_macros_aarch64.h │ ├── dr_ir_macros_arm.h │ ├── dr_ir_macros_x86.h │ ├── dr_ir_opcodes.h │ ├── dr_ir_opcodes_arm.h │ ├── dr_ir_opcodes_x86.h │ ├── dr_ir_opnd.h │ ├── dr_ir_utils.h │ ├── dr_mcxtx.h │ ├── dr_modules.h │ ├── dr_os_utils.h │ ├── dr_proc.h │ ├── dr_tools.h │ └── dr_tracedump.h ├── lib ├── d3d11.lib ├── d3d9.lib ├── d3dx9.lib ├── drdecode.lib ├── drlibc.lib ├── glew32s.lib ├── libdrdecode.a └── libdrlibc.a ├── lib64 ├── d3d11.lib ├── d3d9.lib ├── d3dx9.lib ├── drdecode.lib ├── drlibc.lib ├── glew32s.lib ├── libdrdecode.a └── libdrlibc.a └── src ├── disableGfx ├── CMakeLists.txt └── main.cpp ├── example ├── CMakeLists.txt └── main.cpp ├── hacklib ├── CMakeLists.txt ├── include │ ├── glm │ │ ├── common.hpp │ │ ├── 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_vec_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_normalize.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 │ │ │ ├── structured_bindings.hpp │ │ │ ├── structured_bindings.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 │ └── hacklib │ │ ├── BitManip.h │ │ ├── ConsoleEx.h │ │ ├── CrashHandler.h │ │ ├── D3DDeviceFetcher.h │ │ ├── DrawerD3D.h │ │ ├── DrawerOpenGL.h │ │ ├── ExeFile.h │ │ ├── ForeignClass.h │ │ ├── GfxOverlay.h │ │ ├── GfxOverlay_UNIX.h │ │ ├── Handles.h │ │ ├── Hooker.h │ │ ├── IDrawer.h │ │ ├── ImplementMember.h │ │ ├── Injector.h │ │ ├── Input.h │ │ ├── Logging.h │ │ ├── Main.h │ │ ├── Math.h │ │ ├── Memory.h │ │ ├── MessageBox.h │ │ ├── PageAllocator.h │ │ ├── Patch.h │ │ ├── PatternScanner.h │ │ ├── Process.h │ │ ├── Rng.h │ │ ├── StringManip.h │ │ ├── Timer.h │ │ └── WindowOverlay.h └── src │ ├── ConsoleEx.cpp │ ├── CrashHandler.cpp │ ├── CrashHandler_UNIX.cpp │ ├── CrashHandler_WIN32.cpp │ ├── D3DDeviceFetcher.cpp │ ├── DrawerD3D.cpp │ ├── DrawerOpenGL.cpp │ ├── ExeFile.cpp │ ├── ExeFile_UNIX.cpp │ ├── ExeFile_WIN32.cpp │ ├── GfxOverlay.cpp │ ├── GfxOverlay_UNIX.cpp │ ├── GfxOverlay_WIN32.cpp │ ├── Hooker.cpp │ ├── Hooker_VEH.cpp │ ├── IDrawer.cpp │ ├── Injector_UNIX.cpp │ ├── Injector_WIN32.cpp │ ├── Input.cpp │ ├── Logging.cpp │ ├── Main.cpp │ ├── Main_UNIX.cpp │ ├── Main_WIN32.cpp │ ├── Memory_UNIX.cpp │ ├── Memory_WIN32.cpp │ ├── MessageBox_UNIX.cpp │ ├── MessageBox_WIN32.cpp │ ├── Patch.cpp │ ├── PatternScanner.cpp │ ├── Process_UNIX.cpp │ ├── Process_WIN32.cpp │ ├── StringManip.cpp │ ├── WindowOverlay.cpp │ ├── WindowOverlay_UNIX.cpp │ └── WindowOverlay_WIN32.cpp ├── injector ├── CMakeLists.txt └── main.cpp ├── overlay ├── CMakeLists.txt └── main.cpp ├── test ├── CMakeLists.txt ├── lib.cpp ├── main.cpp └── test.cpp └── veh_benchmark ├── CMakeLists.txt └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/README.md -------------------------------------------------------------------------------- /cmake/DynamoRIOConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/cmake/DynamoRIOConfig.cmake -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/GL/glew.h -------------------------------------------------------------------------------- /include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/GL/glxew.h -------------------------------------------------------------------------------- /include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/GL/wglew.h -------------------------------------------------------------------------------- /include/d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3d11.h -------------------------------------------------------------------------------- /include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3d9.h -------------------------------------------------------------------------------- /include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3d9caps.h -------------------------------------------------------------------------------- /include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3d9types.h -------------------------------------------------------------------------------- /include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9.h -------------------------------------------------------------------------------- /include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9anim.h -------------------------------------------------------------------------------- /include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9core.h -------------------------------------------------------------------------------- /include/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9effect.h -------------------------------------------------------------------------------- /include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9math.h -------------------------------------------------------------------------------- /include/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9math.inl -------------------------------------------------------------------------------- /include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9mesh.h -------------------------------------------------------------------------------- /include/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9shader.h -------------------------------------------------------------------------------- /include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9shape.h -------------------------------------------------------------------------------- /include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9tex.h -------------------------------------------------------------------------------- /include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/d3dx9xof.h -------------------------------------------------------------------------------- /include/dynamorio/annotations/dr_annotations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/annotations/dr_annotations.c -------------------------------------------------------------------------------- /include/dynamorio/annotations/dr_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/annotations/dr_annotations.h -------------------------------------------------------------------------------- /include/dynamorio/annotations/dr_annotations_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/annotations/dr_annotations_asm.h -------------------------------------------------------------------------------- /include/dynamorio/dr_annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_annotation.h -------------------------------------------------------------------------------- /include/dynamorio/dr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_api.h -------------------------------------------------------------------------------- /include/dynamorio/dr_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_app.h -------------------------------------------------------------------------------- /include/dynamorio/dr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_config.h -------------------------------------------------------------------------------- /include/dynamorio/dr_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_defines.h -------------------------------------------------------------------------------- /include/dynamorio/dr_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_events.h -------------------------------------------------------------------------------- /include/dynamorio/dr_frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_frontend.h -------------------------------------------------------------------------------- /include/dynamorio/dr_inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_inject.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_decode.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_disassemble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_disassemble.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_encode.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_instr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_instr.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_instr_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_instr_inline.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_instrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_instrlist.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_macros.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_macros_aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_macros_aarch64.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_macros_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_macros_arm.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_macros_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_macros_x86.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_opcodes.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_opcodes_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_opcodes_arm.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_opcodes_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_opcodes_x86.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_opnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_opnd.h -------------------------------------------------------------------------------- /include/dynamorio/dr_ir_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_ir_utils.h -------------------------------------------------------------------------------- /include/dynamorio/dr_mcxtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_mcxtx.h -------------------------------------------------------------------------------- /include/dynamorio/dr_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_modules.h -------------------------------------------------------------------------------- /include/dynamorio/dr_os_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_os_utils.h -------------------------------------------------------------------------------- /include/dynamorio/dr_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_proc.h -------------------------------------------------------------------------------- /include/dynamorio/dr_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_tools.h -------------------------------------------------------------------------------- /include/dynamorio/dr_tracedump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/include/dynamorio/dr_tracedump.h -------------------------------------------------------------------------------- /lib/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/d3d11.lib -------------------------------------------------------------------------------- /lib/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/d3d9.lib -------------------------------------------------------------------------------- /lib/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/d3dx9.lib -------------------------------------------------------------------------------- /lib/drdecode.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/drdecode.lib -------------------------------------------------------------------------------- /lib/drlibc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/drlibc.lib -------------------------------------------------------------------------------- /lib/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/glew32s.lib -------------------------------------------------------------------------------- /lib/libdrdecode.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/libdrdecode.a -------------------------------------------------------------------------------- /lib/libdrlibc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib/libdrlibc.a -------------------------------------------------------------------------------- /lib64/d3d11.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/d3d11.lib -------------------------------------------------------------------------------- /lib64/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/d3d9.lib -------------------------------------------------------------------------------- /lib64/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/d3dx9.lib -------------------------------------------------------------------------------- /lib64/drdecode.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/drdecode.lib -------------------------------------------------------------------------------- /lib64/drlibc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/drlibc.lib -------------------------------------------------------------------------------- /lib64/glew32s.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/glew32s.lib -------------------------------------------------------------------------------- /lib64/libdrdecode.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/libdrdecode.a -------------------------------------------------------------------------------- /lib64/libdrlibc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/lib64/libdrlibc.a -------------------------------------------------------------------------------- /src/disableGfx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/disableGfx/CMakeLists.txt -------------------------------------------------------------------------------- /src/disableGfx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/disableGfx/main.cpp -------------------------------------------------------------------------------- /src/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/example/CMakeLists.txt -------------------------------------------------------------------------------- /src/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/example/main.cpp -------------------------------------------------------------------------------- /src/hacklib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/CMakeLists.txt -------------------------------------------------------------------------------- /src/hacklib/include/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_features.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/compute_vector_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/compute_vector_decl.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/glm.cpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/setup.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_half.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/detail/type_vec_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/detail/type_vec_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/exponential.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/_matrix_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/_matrix_vectorize.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/fwd.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/geometric.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/glm.cppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/glm.cppm -------------------------------------------------------------------------------- /src/hacklib/include/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/glm.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/constants.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/noise.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/packing.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/random.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/random.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/round.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/round.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/bit.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/common.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/common.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/easing.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/extend.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/float_normalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/float_normalize.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/functions.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/hash.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/integer.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/io.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/io.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/norm.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/normal.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/pca.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/projection.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/range.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/spline.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/structured_bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/structured_bindings.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/structured_bindings.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/structured_bindings.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/texture.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/transform.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /src/hacklib/include/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/integer.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat2x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat2x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat2x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat3x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat3x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat3x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat4x2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat4x3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/mat4x4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/matrix.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/packing.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/common.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/exponential.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/geometric.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/integer.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/matrix.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/neon.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/packing.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/platform.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /src/hacklib/include/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/trigonometric.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/vec2.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/vec3.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/vec4.hpp -------------------------------------------------------------------------------- /src/hacklib/include/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/glm/vector_relational.hpp -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/BitManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/BitManip.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/ConsoleEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/ConsoleEx.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/CrashHandler.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/D3DDeviceFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/D3DDeviceFetcher.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/DrawerD3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/DrawerD3D.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/DrawerOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/DrawerOpenGL.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/ExeFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/ExeFile.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/ForeignClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/ForeignClass.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/GfxOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/GfxOverlay.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/GfxOverlay_UNIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/GfxOverlay_UNIX.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Handles.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Hooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Hooker.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/IDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/IDrawer.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/ImplementMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/ImplementMember.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Injector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Injector.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Input.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Logging.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Main.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Math.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Memory.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/MessageBox.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/PageAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/PageAllocator.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Patch.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/PatternScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/PatternScanner.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Process.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Rng.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/StringManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/StringManip.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/Timer.h -------------------------------------------------------------------------------- /src/hacklib/include/hacklib/WindowOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/include/hacklib/WindowOverlay.h -------------------------------------------------------------------------------- /src/hacklib/src/ConsoleEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/ConsoleEx.cpp -------------------------------------------------------------------------------- /src/hacklib/src/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/CrashHandler.cpp -------------------------------------------------------------------------------- /src/hacklib/src/CrashHandler_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/CrashHandler_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/CrashHandler_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/CrashHandler_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/D3DDeviceFetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/D3DDeviceFetcher.cpp -------------------------------------------------------------------------------- /src/hacklib/src/DrawerD3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/DrawerD3D.cpp -------------------------------------------------------------------------------- /src/hacklib/src/DrawerOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/DrawerOpenGL.cpp -------------------------------------------------------------------------------- /src/hacklib/src/ExeFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/ExeFile.cpp -------------------------------------------------------------------------------- /src/hacklib/src/ExeFile_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/ExeFile_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/ExeFile_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/ExeFile_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/GfxOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/GfxOverlay.cpp -------------------------------------------------------------------------------- /src/hacklib/src/GfxOverlay_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/GfxOverlay_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/GfxOverlay_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/GfxOverlay_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Hooker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Hooker.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Hooker_VEH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Hooker_VEH.cpp -------------------------------------------------------------------------------- /src/hacklib/src/IDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/IDrawer.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Injector_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Injector_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Injector_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Injector_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Input.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Logging.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Main.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Main_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Main_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Main_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Main_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Memory_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Memory_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Memory_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Memory_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/MessageBox_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/MessageBox_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/MessageBox_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/MessageBox_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Patch.cpp -------------------------------------------------------------------------------- /src/hacklib/src/PatternScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/PatternScanner.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Process_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Process_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/Process_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/Process_WIN32.cpp -------------------------------------------------------------------------------- /src/hacklib/src/StringManip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/StringManip.cpp -------------------------------------------------------------------------------- /src/hacklib/src/WindowOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/WindowOverlay.cpp -------------------------------------------------------------------------------- /src/hacklib/src/WindowOverlay_UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/WindowOverlay_UNIX.cpp -------------------------------------------------------------------------------- /src/hacklib/src/WindowOverlay_WIN32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/hacklib/src/WindowOverlay_WIN32.cpp -------------------------------------------------------------------------------- /src/injector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/injector/CMakeLists.txt -------------------------------------------------------------------------------- /src/injector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/injector/main.cpp -------------------------------------------------------------------------------- /src/overlay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/overlay/CMakeLists.txt -------------------------------------------------------------------------------- /src/overlay/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/overlay/main.cpp -------------------------------------------------------------------------------- /src/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/test/CMakeLists.txt -------------------------------------------------------------------------------- /src/test/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/test/lib.cpp -------------------------------------------------------------------------------- /src/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/test/main.cpp -------------------------------------------------------------------------------- /src/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/test/test.cpp -------------------------------------------------------------------------------- /src/veh_benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/veh_benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /src/veh_benchmark/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafzi/hacklib/HEAD/src/veh_benchmark/main.cpp --------------------------------------------------------------------------------