Files
GhostEngine/Ghost.Zeux.MeshOptimizer/meshopt_CoverageStatistics.cs
Misaki d2d9f5feb7 Refactor and enhance codebase for maintainability
Refactored and reorganized the codebase to improve readability, performance, and maintainability. Introduced new interfaces and structs for better resource management, updated project configuration files, and refactored shader and graphics pipeline management. Improved error handling, code formatting, and removed unused code and namespaces. Updated DLL references and method signatures for consistency and maintainability.
2025-10-22 18:46:39 +09:00

19 lines
391 B
C#

using System.Runtime.CompilerServices;
namespace Ghost.Zeux.MeshOptimizer
{
public partial struct meshopt_CoverageStatistics
{
[NativeTypeName("float[3]")]
public _coverage_e__FixedBuffer coverage;
public float extent;
[InlineArray(3)]
public partial struct _coverage_e__FixedBuffer
{
public float e0;
}
}
}