// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.OpenXR { internal static class InternalMeshSettings { /// /// Change the settings for future meshes given by the OpenXR XRMeshSubsystem. /// public static bool TrySetMeshComputeSettings(MeshComputeSettings settings) { return NativeLib.SetMeshComputeSettings(settings); } } }