Add existing to tracked

This commit is contained in:
Jay
2026-08-11 09:53:42 -04:00
parent afe07f3055
commit ffd6e3d73c
8531 changed files with 4396230 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
// This file is part of meshoptimizer library and is distributed under the terms of MIT License.
// Copyright (C) 2016-2026, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)
export type TangentsFlags = 'Compatible' | 'ZeroFallback';
export const MeshoptTangents: {
supported: boolean;
ready: Promise<void>;
generateTangents: (
indices: Uint32Array | null,
vertex_positions: Float32Array,
vertex_positions_stride: number,
vertex_normals: Float32Array,
vertex_normals_stride: number,
vertex_uvs: Float32Array,
vertex_uvs_stride: number,
flags?: TangentsFlags[]
) => Float32Array;
};