17 lines
477 B
C#
17 lines
477 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
namespace Microsoft.MixedReality.OpenXR
|
|
{
|
|
internal static class InternalMeshSettings
|
|
{
|
|
/// <summary>
|
|
/// Change the settings for future meshes given by the OpenXR XRMeshSubsystem.
|
|
/// </summary>
|
|
public static bool TrySetMeshComputeSettings(MeshComputeSettings settings)
|
|
{
|
|
return NativeLib.SetMeshComputeSettings(settings);
|
|
}
|
|
}
|
|
}
|