Files
MicrosoftIris/UIXrender/Engine/IRenderThreadHandle.cs
T

10 lines
181 B
C#
Raw Normal View History

2026-07-22 18:34:57 -05:00
using System;
using Microsoft.Iris.Render.Interop;
namespace Microsoft.Iris.Render.Engine;
public interface IRenderThreadHandle : IDisposable
{
ContextID ContextId { get; }
}