├── .gitignore ├── README.md ├── code ├── __init__.py ├── dmm_models │ ├── __init__.py │ ├── adnerf_rendering-256 │ │ ├── __init__.py │ │ └── teeth_tris.txt │ ├── adnerf_rendering │ │ ├── __init__.py │ │ ├── wholebody_sel.txt │ │ ├── wholebody_tris.obj │ │ └── wholebody_tris_info.pt │ ├── smplx │ │ ├── SMPLX2020 │ │ │ ├── download-SMPLX-models-here │ │ │ ├── pts51_bary_coords.txt │ │ │ ├── pts51_faces_idx.txt │ │ │ └── smplx_uv.obj │ │ ├── __init__.py │ │ ├── examples │ │ │ ├── demo.py │ │ │ ├── demo_layers.py │ │ │ ├── vis_flame_vertices.py │ │ │ └── vis_mano_vertices.py │ │ ├── human_models.py │ │ ├── smplx │ │ │ ├── __init__.py │ │ │ ├── body_models.py │ │ │ ├── joint_names.py │ │ │ ├── lbs.py │ │ │ ├── utils.py │ │ │ ├── vertex_ids.py │ │ │ └── vertex_joint_selector.py │ │ ├── smplx_config.py │ │ └── tools │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── clean_ch.py │ │ │ └── merge_smplh_mano.py │ └── utils │ │ ├── __init__.py │ │ └── keypoints_mapping │ │ ├── __init__.py │ │ ├── coco_wholebody.py │ │ └── smplx.py ├── finetune_module │ ├── __init__.py │ ├── anydoor_editor.py │ ├── ddim_hacked.py │ ├── get_prompt.py │ ├── ip2p_editor.py │ └── relight_editor.py ├── gaussian_training │ ├── __init__.py │ ├── config.py │ ├── emoca_recog.py │ ├── folder_loader.py │ ├── gaussian_renderer │ │ ├── __init__.py │ │ └── network_gui.py │ ├── neural_render.py │ ├── scene_adteeth │ │ ├── __init__.py │ │ ├── camera.py │ │ ├── gaussian_scene.py │ │ └── geometry.py │ ├── styletransfer.py │ └── trainer.py ├── neuralstyle │ ├── LICENSE │ ├── README.md │ └── src │ │ ├── main.py │ │ ├── model.py │ │ ├── settings.py │ │ └── utils.py ├── render_utils │ ├── __init__.py │ ├── geometry_utils.py │ ├── loss_utils.py │ └── render_nvdiff.py └── utils_funcs │ ├── __init__.py │ └── video_writer.py ├── diff_gaussian_rasterization_fea ├── .gitignore ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── cuda_rasterizer │ ├── auxiliary.h │ ├── backward.cu │ ├── backward.h │ ├── config.h │ ├── forward.cu │ ├── forward.h │ ├── rasterizer.h │ ├── rasterizer_impl.cu │ └── rasterizer_impl.h ├── diff_gaussian_rasterization_fea.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── diff_gaussian_rasterization_fea │ └── __init__.py ├── ext.cpp ├── rasterize_points.cu ├── rasterize_points.h ├── setup.py └── third_party │ ├── glm │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── cmake │ │ └── cmake_uninstall.cmake.in │ ├── copying.txt │ ├── glm │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ ├── type_vec4.inl │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── _matrix_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.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── pca.hpp │ │ │ ├── pca.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── neon.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ ├── manual.md │ ├── readme.md │ ├── test │ │ ├── CMakeLists.txt │ │ ├── bug │ │ │ ├── CMakeLists.txt │ │ │ └── bug_ms_vec_static.cpp │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ └── test_find_glm.cpp │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── core_cpp_constexpr.cpp │ │ │ ├── core_cpp_defaulted_ctor.cpp │ │ │ ├── core_force_aligned_gentypes.cpp │ │ │ ├── core_force_arch_unknown.cpp │ │ │ ├── core_force_compiler_unknown.cpp │ │ │ ├── core_force_ctor_init.cpp │ │ │ ├── core_force_cxx03.cpp │ │ │ ├── core_force_cxx98.cpp │ │ │ ├── core_force_cxx_unknown.cpp │ │ │ ├── core_force_depth_zero_to_one.cpp │ │ │ ├── core_force_explicit_ctor.cpp │ │ │ ├── core_force_inline.cpp │ │ │ ├── core_force_left_handed.cpp │ │ │ ├── core_force_platform_unknown.cpp │ │ │ ├── core_force_pure.cpp │ │ │ ├── core_force_quat_xyzw.cpp │ │ │ ├── core_force_size_t_length.cpp │ │ │ ├── core_force_unrestricted_gentype.cpp │ │ │ ├── core_force_xyzw_only.cpp │ │ │ ├── core_func_common.cpp │ │ │ ├── core_func_exponential.cpp │ │ │ ├── core_func_geometric.cpp │ │ │ ├── core_func_integer.cpp │ │ │ ├── core_func_integer_bit_count.cpp │ │ │ ├── core_func_integer_find_lsb.cpp │ │ │ ├── core_func_integer_find_msb.cpp │ │ │ ├── core_func_matrix.cpp │ │ │ ├── core_func_noise.cpp │ │ │ ├── core_func_packing.cpp │ │ │ ├── core_func_swizzle.cpp │ │ │ ├── core_func_trigonometric.cpp │ │ │ ├── core_func_vector_relational.cpp │ │ │ ├── core_setup_force_cxx98.cpp │ │ │ ├── core_setup_force_size_t_length.cpp │ │ │ ├── core_setup_message.cpp │ │ │ ├── core_setup_platform_unknown.cpp │ │ │ ├── core_setup_precision.cpp │ │ │ ├── core_type_aligned.cpp │ │ │ ├── core_type_cast.cpp │ │ │ ├── core_type_ctor.cpp │ │ │ ├── core_type_int.cpp │ │ │ ├── core_type_length.cpp │ │ │ ├── core_type_mat2x2.cpp │ │ │ ├── core_type_mat2x3.cpp │ │ │ ├── core_type_mat2x4.cpp │ │ │ ├── core_type_mat3x2.cpp │ │ │ ├── core_type_mat3x3.cpp │ │ │ ├── core_type_mat3x4.cpp │ │ │ ├── core_type_mat4x2.cpp │ │ │ ├── core_type_mat4x3.cpp │ │ │ ├── core_type_mat4x4.cpp │ │ │ ├── core_type_vec1.cpp │ │ │ ├── core_type_vec2.cpp │ │ │ ├── core_type_vec3.cpp │ │ │ └── core_type_vec4.cpp │ │ ├── ext │ │ │ ├── CMakeLists.txt │ │ │ ├── ext_matrix_clip_space.cpp │ │ │ ├── ext_matrix_common.cpp │ │ │ ├── ext_matrix_int2x2_sized.cpp │ │ │ ├── ext_matrix_int2x3_sized.cpp │ │ │ ├── ext_matrix_int2x4_sized.cpp │ │ │ ├── ext_matrix_int3x2_sized.cpp │ │ │ ├── ext_matrix_int3x3_sized.cpp │ │ │ ├── ext_matrix_int3x4_sized.cpp │ │ │ ├── ext_matrix_int4x2_sized.cpp │ │ │ ├── ext_matrix_int4x3_sized.cpp │ │ │ ├── ext_matrix_int4x4_sized.cpp │ │ │ ├── ext_matrix_integer.cpp │ │ │ ├── ext_matrix_projection.cpp │ │ │ ├── ext_matrix_relational.cpp │ │ │ ├── ext_matrix_transform.cpp │ │ │ ├── ext_matrix_uint2x2_sized.cpp │ │ │ ├── ext_matrix_uint2x3_sized.cpp │ │ │ ├── ext_matrix_uint2x4_sized.cpp │ │ │ ├── ext_matrix_uint3x2_sized.cpp │ │ │ ├── ext_matrix_uint3x3_sized.cpp │ │ │ ├── ext_matrix_uint3x4_sized.cpp │ │ │ ├── ext_matrix_uint4x2_sized.cpp │ │ │ ├── ext_matrix_uint4x3_sized.cpp │ │ │ ├── ext_matrix_uint4x4_sized.cpp │ │ │ ├── ext_quaternion_common.cpp │ │ │ ├── ext_quaternion_exponential.cpp │ │ │ ├── ext_quaternion_geometric.cpp │ │ │ ├── ext_quaternion_relational.cpp │ │ │ ├── ext_quaternion_transform.cpp │ │ │ ├── ext_quaternion_trigonometric.cpp │ │ │ ├── ext_quaternion_type.cpp │ │ │ ├── ext_scalar_common.cpp │ │ │ ├── ext_scalar_constants.cpp │ │ │ ├── ext_scalar_int_sized.cpp │ │ │ ├── ext_scalar_integer.cpp │ │ │ ├── ext_scalar_packing.cpp │ │ │ ├── ext_scalar_reciprocal.cpp │ │ │ ├── ext_scalar_relational.cpp │ │ │ ├── ext_scalar_uint_sized.cpp │ │ │ ├── ext_scalar_ulp.cpp │ │ │ ├── ext_vec1.cpp │ │ │ ├── ext_vector_bool1.cpp │ │ │ ├── ext_vector_common.cpp │ │ │ ├── ext_vector_iec559.cpp │ │ │ ├── ext_vector_int1_sized.cpp │ │ │ ├── ext_vector_int2_sized.cpp │ │ │ ├── ext_vector_int3_sized.cpp │ │ │ ├── ext_vector_int4_sized.cpp │ │ │ ├── ext_vector_integer.cpp │ │ │ ├── ext_vector_integer_sized.cpp │ │ │ ├── ext_vector_packing.cpp │ │ │ ├── ext_vector_reciprocal.cpp │ │ │ ├── ext_vector_relational.cpp │ │ │ ├── ext_vector_uint1_sized.cpp │ │ │ ├── ext_vector_uint2_sized.cpp │ │ │ ├── ext_vector_uint3_sized.cpp │ │ │ ├── ext_vector_uint4_sized.cpp │ │ │ └── ext_vector_ulp.cpp │ │ ├── glm.cppcheck │ │ ├── gtc │ │ │ ├── CMakeLists.txt │ │ │ ├── gtc_bitfield.cpp │ │ │ ├── gtc_color_space.cpp │ │ │ ├── gtc_constants.cpp │ │ │ ├── gtc_epsilon.cpp │ │ │ ├── gtc_integer.cpp │ │ │ ├── gtc_matrix_access.cpp │ │ │ ├── gtc_matrix_integer.cpp │ │ │ ├── gtc_matrix_inverse.cpp │ │ │ ├── gtc_matrix_transform.cpp │ │ │ ├── gtc_noise.cpp │ │ │ ├── gtc_packing.cpp │ │ │ ├── gtc_quaternion.cpp │ │ │ ├── gtc_random.cpp │ │ │ ├── gtc_reciprocal.cpp │ │ │ ├── gtc_round.cpp │ │ │ ├── gtc_type_aligned.cpp │ │ │ ├── gtc_type_precision.cpp │ │ │ ├── gtc_type_ptr.cpp │ │ │ ├── gtc_ulp.cpp │ │ │ ├── gtc_user_defined_types.cpp │ │ │ └── gtc_vec1.cpp │ │ ├── gtx │ │ │ ├── CMakeLists.txt │ │ │ ├── gtx.cpp │ │ │ ├── gtx_associated_min_max.cpp │ │ │ ├── gtx_closest_point.cpp │ │ │ ├── gtx_color_encoding.cpp │ │ │ ├── gtx_color_space.cpp │ │ │ ├── gtx_color_space_YCoCg.cpp │ │ │ ├── gtx_common.cpp │ │ │ ├── gtx_compatibility.cpp │ │ │ ├── gtx_component_wise.cpp │ │ │ ├── gtx_dual_quaternion.cpp │ │ │ ├── gtx_easing.cpp │ │ │ ├── gtx_euler_angle.cpp │ │ │ ├── gtx_extend.cpp │ │ │ ├── gtx_extended_min_max.cpp │ │ │ ├── gtx_extented_min_max.cpp │ │ │ ├── gtx_exterior_product.cpp │ │ │ ├── gtx_fast_exponential.cpp │ │ │ ├── gtx_fast_square_root.cpp │ │ │ ├── gtx_fast_trigonometry.cpp │ │ │ ├── gtx_functions.cpp │ │ │ ├── gtx_gradient_paint.cpp │ │ │ ├── gtx_handed_coordinate_space.cpp │ │ │ ├── gtx_hash.cpp │ │ │ ├── gtx_int_10_10_10_2.cpp │ │ │ ├── gtx_integer.cpp │ │ │ ├── gtx_intersect.cpp │ │ │ ├── gtx_io.cpp │ │ │ ├── gtx_load.cpp │ │ │ ├── gtx_log_base.cpp │ │ │ ├── gtx_matrix_cross_product.cpp │ │ │ ├── gtx_matrix_decompose.cpp │ │ │ ├── gtx_matrix_factorisation.cpp │ │ │ ├── gtx_matrix_interpolation.cpp │ │ │ ├── gtx_matrix_major_storage.cpp │ │ │ ├── gtx_matrix_operation.cpp │ │ │ ├── gtx_matrix_query.cpp │ │ │ ├── gtx_matrix_transform_2d.cpp │ │ │ ├── gtx_mixed_product.cpp │ │ │ ├── gtx_norm.cpp │ │ │ ├── gtx_normal.cpp │ │ │ ├── gtx_normalize_dot.cpp │ │ │ ├── gtx_number_precision.cpp │ │ │ ├── gtx_optimum_pow.cpp │ │ │ ├── gtx_orthonormalize.cpp │ │ │ ├── gtx_pca.cpp │ │ │ ├── gtx_perpendicular.cpp │ │ │ ├── gtx_polar_coordinates.cpp │ │ │ ├── gtx_projection.cpp │ │ │ ├── gtx_quaternion.cpp │ │ │ ├── gtx_random.cpp │ │ │ ├── gtx_range.cpp │ │ │ ├── gtx_rotate_normalized_axis.cpp │ │ │ ├── gtx_rotate_vector.cpp │ │ │ ├── gtx_scalar_multiplication.cpp │ │ │ ├── gtx_scalar_relational.cpp │ │ │ ├── gtx_simd_mat4.cpp │ │ │ ├── gtx_simd_vec4.cpp │ │ │ ├── gtx_spline.cpp │ │ │ ├── gtx_string_cast.cpp │ │ │ ├── gtx_texture.cpp │ │ │ ├── gtx_type_aligned.cpp │ │ │ ├── gtx_type_trait.cpp │ │ │ ├── gtx_vec_swizzle.cpp │ │ │ ├── gtx_vector_angle.cpp │ │ │ ├── gtx_vector_query.cpp │ │ │ └── gtx_wrap.cpp │ │ └── perf │ │ │ ├── CMakeLists.txt │ │ │ ├── perf_matrix_div.cpp │ │ │ ├── perf_matrix_inverse.cpp │ │ │ ├── perf_matrix_mul.cpp │ │ │ ├── perf_matrix_mul_vector.cpp │ │ │ ├── perf_matrix_transpose.cpp │ │ │ └── perf_vector_mul_matrix.cpp │ └── util │ │ ├── autoexp.txt │ │ ├── autoexp.vc2010.dat │ │ ├── glm.natvis │ │ └── usertype.dat │ └── stbi_image_write.h ├── fig ├── pipe.png └── teaser.png ├── get_tris_info.py ├── move_ckpt.py ├── ref_image ├── cloth1.png ├── cloth2.jpg ├── starry-night.jpg └── sun.jpg ├── relight.py ├── requirements.txt ├── run_edit_anydoor.sh ├── run_edit_ip2p.sh ├── run_edit_relight.sh ├── run_edit_style.sh ├── run_recon.sh ├── train_edit_anydoor.py ├── train_edit_ip2p.py ├── train_edit_relight.py ├── train_edit_style.py └── train_recon.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/README.md -------------------------------------------------------------------------------- /code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/dmm_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering-256/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering-256/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering-256/teeth_tris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering-256/teeth_tris.txt -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering/wholebody_sel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering/wholebody_sel.txt -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering/wholebody_tris.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering/wholebody_tris.obj -------------------------------------------------------------------------------- /code/dmm_models/adnerf_rendering/wholebody_tris_info.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/adnerf_rendering/wholebody_tris_info.pt -------------------------------------------------------------------------------- /code/dmm_models/smplx/SMPLX2020/download-SMPLX-models-here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/dmm_models/smplx/SMPLX2020/pts51_bary_coords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/SMPLX2020/pts51_bary_coords.txt -------------------------------------------------------------------------------- /code/dmm_models/smplx/SMPLX2020/pts51_faces_idx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/SMPLX2020/pts51_faces_idx.txt -------------------------------------------------------------------------------- /code/dmm_models/smplx/SMPLX2020/smplx_uv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/SMPLX2020/smplx_uv.obj -------------------------------------------------------------------------------- /code/dmm_models/smplx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/examples/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/examples/demo.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/examples/demo_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/examples/demo_layers.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/examples/vis_flame_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/examples/vis_flame_vertices.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/examples/vis_mano_vertices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/examples/vis_mano_vertices.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/human_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/human_models.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/body_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/body_models.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/joint_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/joint_names.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/lbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/lbs.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/utils.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/vertex_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/vertex_ids.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx/vertex_joint_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx/vertex_joint_selector.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/smplx_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/smplx_config.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/tools/README.md -------------------------------------------------------------------------------- /code/dmm_models/smplx/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/tools/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/tools/clean_ch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/tools/clean_ch.py -------------------------------------------------------------------------------- /code/dmm_models/smplx/tools/merge_smplh_mano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/smplx/tools/merge_smplh_mano.py -------------------------------------------------------------------------------- /code/dmm_models/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/dmm_models/utils/keypoints_mapping/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/utils/keypoints_mapping/__init__.py -------------------------------------------------------------------------------- /code/dmm_models/utils/keypoints_mapping/coco_wholebody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/utils/keypoints_mapping/coco_wholebody.py -------------------------------------------------------------------------------- /code/dmm_models/utils/keypoints_mapping/smplx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/dmm_models/utils/keypoints_mapping/smplx.py -------------------------------------------------------------------------------- /code/finetune_module/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/__init__.py -------------------------------------------------------------------------------- /code/finetune_module/anydoor_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/anydoor_editor.py -------------------------------------------------------------------------------- /code/finetune_module/ddim_hacked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/ddim_hacked.py -------------------------------------------------------------------------------- /code/finetune_module/get_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/get_prompt.py -------------------------------------------------------------------------------- /code/finetune_module/ip2p_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/ip2p_editor.py -------------------------------------------------------------------------------- /code/finetune_module/relight_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/finetune_module/relight_editor.py -------------------------------------------------------------------------------- /code/gaussian_training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/__init__.py -------------------------------------------------------------------------------- /code/gaussian_training/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/config.py -------------------------------------------------------------------------------- /code/gaussian_training/emoca_recog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/emoca_recog.py -------------------------------------------------------------------------------- /code/gaussian_training/folder_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/folder_loader.py -------------------------------------------------------------------------------- /code/gaussian_training/gaussian_renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/gaussian_renderer/__init__.py -------------------------------------------------------------------------------- /code/gaussian_training/gaussian_renderer/network_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/gaussian_renderer/network_gui.py -------------------------------------------------------------------------------- /code/gaussian_training/neural_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/neural_render.py -------------------------------------------------------------------------------- /code/gaussian_training/scene_adteeth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/scene_adteeth/__init__.py -------------------------------------------------------------------------------- /code/gaussian_training/scene_adteeth/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/scene_adteeth/camera.py -------------------------------------------------------------------------------- /code/gaussian_training/scene_adteeth/gaussian_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/scene_adteeth/gaussian_scene.py -------------------------------------------------------------------------------- /code/gaussian_training/scene_adteeth/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/scene_adteeth/geometry.py -------------------------------------------------------------------------------- /code/gaussian_training/styletransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/styletransfer.py -------------------------------------------------------------------------------- /code/gaussian_training/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/gaussian_training/trainer.py -------------------------------------------------------------------------------- /code/neuralstyle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/LICENSE -------------------------------------------------------------------------------- /code/neuralstyle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/README.md -------------------------------------------------------------------------------- /code/neuralstyle/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/src/main.py -------------------------------------------------------------------------------- /code/neuralstyle/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/src/model.py -------------------------------------------------------------------------------- /code/neuralstyle/src/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/src/settings.py -------------------------------------------------------------------------------- /code/neuralstyle/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/neuralstyle/src/utils.py -------------------------------------------------------------------------------- /code/render_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/render_utils/__init__.py -------------------------------------------------------------------------------- /code/render_utils/geometry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/render_utils/geometry_utils.py -------------------------------------------------------------------------------- /code/render_utils/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/render_utils/loss_utils.py -------------------------------------------------------------------------------- /code/render_utils/render_nvdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/render_utils/render_nvdiff.py -------------------------------------------------------------------------------- /code/utils_funcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/utils_funcs/__init__.py -------------------------------------------------------------------------------- /code/utils_funcs/video_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/code/utils_funcs/video_writer.py -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/.gitignore -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/LICENSE.md -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/README.md -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/auxiliary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/auxiliary.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/backward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/backward.cu -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/backward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/backward.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/config.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/forward.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/forward.cu -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/forward.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer_impl.cu -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/cuda_rasterizer/rasterizer_impl.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/PKG-INFO -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | diff_gaussian_rasterization_fea 2 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/diff_gaussian_rasterization_fea/__init__.py -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/ext.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/rasterize_points.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/rasterize_points.cu -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/rasterize_points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/rasterize_points.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/setup.py -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/.appveyor.yml -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/.gitignore -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/.travis.yml -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/copying.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_features.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/compute_common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_common_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/glm.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/qualifier.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/setup.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_half.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/exponential.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/_matrix_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/_matrix_vectorize.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int2x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int3x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_int4x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_projection.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_relational.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_transform.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint2x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint3x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/matrix_uint4x4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_constants.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_packing.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_reciprocal.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_reciprocal.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_relational.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int1_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_int4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_packing.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_packing.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_reciprocal.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_reciprocal.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_relational.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint1_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint1_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint2_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint2_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint3_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint3_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint4_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_uint4_sized.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/ext/vector_ulp.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/fwd.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/geometric.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/glm.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/bitfield.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/bitfield.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/color_space.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/color_space.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/constants.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/noise.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/packing.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/random.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/random.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/round.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/round.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtc/vec1.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/bit.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_encoding.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/common.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/common.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/easing.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/easing.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extend.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/exterior_product.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/functions.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/functions.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/hash.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/hash.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/integer.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/io.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/io.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/norm.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normal.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/pca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/pca.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/pca.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/pca.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/projection.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/range.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/spline.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/texture.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/texture.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_trait.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/type_trait.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/integer.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat2x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat3x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/mat4x4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/matrix.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/packing.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/common.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/exponential.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/geometric.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/integer.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/matrix.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/neon.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/packing.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/platform.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/trigonometric.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/simd/vector_relational.h -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/trigonometric.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/vec2.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/vec3.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/vec4.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/glm/vector_relational.hpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/manual.md -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/readme.md -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/bug/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | glmCreateTestGTC(bug_ms_vec_static) 2 | -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/bug/bug_ms_vec_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/bug/bug_ms_vec_static.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/cmake/test_find_glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/cmake/test_find_glm.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_cpp_constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_cpp_constexpr.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_ctor_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_ctor_init.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx03.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx98.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx98.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx_unknown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_cxx_unknown.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_inline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_inline.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_left_handed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_left_handed.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_pure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_pure.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_quat_xyzw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_quat_xyzw.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_xyzw_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_force_xyzw_only.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_common.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_exponential.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_geometric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_geometric.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_matrix.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_noise.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_packing.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_swizzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_func_swizzle.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_force_cxx98.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_force_cxx98.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_message.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_setup_precision.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_aligned.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_cast.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_ctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_ctor.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_int.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_length.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_length.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x2.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x3.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat2x4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x2.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x3.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat3x4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x2.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x3.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_mat4x4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec1.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec2.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec3.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/core/core_type_vec4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_clip_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_clip_space.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_common.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x2_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x2_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x3_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x3_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x4_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int2x4_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x2_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x2_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x3_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x3_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x4_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int3x4_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int4x2_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int4x2_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int4x3_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_int4x3_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_matrix_transform.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_quaternion_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_quaternion_type.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_common.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_constants.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_int_sized.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_int_sized.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_packing.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_scalar_ulp.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vec1.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_bool1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_bool1.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_common.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_iec559.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_iec559.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_packing.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/ext/ext_vector_ulp.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/glm.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/glm.cppcheck -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_bitfield.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_bitfield.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_color_space.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_constants.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_epsilon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_epsilon.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_access.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_access.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_inverse.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_matrix_transform.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_noise.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_packing.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_quaternion.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_random.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_reciprocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_reciprocal.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_round.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_aligned.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_precision.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_type_ptr.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_ulp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_ulp.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_vec1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtc/gtc_vec1.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_closest_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_closest_point.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_color_encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_color_encoding.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_color_space.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_color_space.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_common.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_compatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_compatibility.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_component_wise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_component_wise.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_dual_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_dual_quaternion.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_easing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_easing.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_euler_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_euler_angle.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extend.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extended_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extended_min_max.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extented_min_max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_extented_min_max.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_exterior_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_exterior_product.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_fast_exponential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_fast_exponential.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_fast_square_root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_fast_square_root.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_functions.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_gradient_paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_gradient_paint.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_hash.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_int_10_10_10_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_int_10_10_10_2.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_integer.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_intersect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_intersect.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_io.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_load.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_log_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_log_base.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_decompose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_decompose.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_operation.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_matrix_query.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_mixed_product.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_mixed_product.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_norm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_norm.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_normal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_normal.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_normalize_dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_normalize_dot.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_number_precision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_number_precision.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_optimum_pow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_optimum_pow.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_orthonormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_orthonormalize.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_pca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_pca.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_perpendicular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_perpendicular.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_projection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_projection.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_quaternion.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_random.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_range.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_rotate_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_rotate_vector.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_simd_mat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_simd_mat4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_simd_vec4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_simd_vec4.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_spline.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_string_cast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_string_cast.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_texture.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_type_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_type_aligned.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_type_trait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_type_trait.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vec_swizzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vec_swizzle.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vector_angle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vector_angle.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vector_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_vector_query.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/gtx/gtx_wrap.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/perf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/perf/CMakeLists.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_div.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_div.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_inverse.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_mul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/test/perf/perf_matrix_mul.cpp -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/util/autoexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/util/autoexp.txt -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/util/autoexp.vc2010.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/util/autoexp.vc2010.dat -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/util/glm.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/util/glm.natvis -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/glm/util/usertype.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/glm/util/usertype.dat -------------------------------------------------------------------------------- /diff_gaussian_rasterization_fea/third_party/stbi_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/diff_gaussian_rasterization_fea/third_party/stbi_image_write.h -------------------------------------------------------------------------------- /fig/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/fig/pipe.png -------------------------------------------------------------------------------- /fig/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/fig/teaser.png -------------------------------------------------------------------------------- /get_tris_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/get_tris_info.py -------------------------------------------------------------------------------- /move_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/move_ckpt.py -------------------------------------------------------------------------------- /ref_image/cloth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/ref_image/cloth1.png -------------------------------------------------------------------------------- /ref_image/cloth2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/ref_image/cloth2.jpg -------------------------------------------------------------------------------- /ref_image/starry-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/ref_image/starry-night.jpg -------------------------------------------------------------------------------- /ref_image/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/ref_image/sun.jpg -------------------------------------------------------------------------------- /relight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/relight.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_edit_anydoor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/run_edit_anydoor.sh -------------------------------------------------------------------------------- /run_edit_ip2p.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/run_edit_ip2p.sh -------------------------------------------------------------------------------- /run_edit_relight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/run_edit_relight.sh -------------------------------------------------------------------------------- /run_edit_style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/run_edit_style.sh -------------------------------------------------------------------------------- /run_recon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/run_recon.sh -------------------------------------------------------------------------------- /train_edit_anydoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/train_edit_anydoor.py -------------------------------------------------------------------------------- /train_edit_ip2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/train_edit_ip2p.py -------------------------------------------------------------------------------- /train_edit_relight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/train_edit_relight.py -------------------------------------------------------------------------------- /train_edit_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/train_edit_style.py -------------------------------------------------------------------------------- /train_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/USTC3DV/PortraitGen-code/HEAD/train_recon.py --------------------------------------------------------------------------------