Files
MicrosoftIris/UIXrender/Engine/IRenderThreadHandle.cs
T
2026-07-22 18:34:57 -05:00

10 lines
181 B
C#

using System;
using Microsoft.Iris.Render.Interop;
namespace Microsoft.Iris.Render.Engine;
public interface IRenderThreadHandle : IDisposable
{
ContextID ContextId { get; }
}