Files
tooll3--t3/SystemUi/IUiContentDrawer.cs
2026-07-13 13:13:17 +08:00

13 lines
388 B
C#

namespace T3.SystemUi;
public interface IUiContentDrawer<in TRenderDevice> : IUiContentDrawer
{
public void Initialize(TRenderDevice device, int width, int height, object imguiContextLockObj, out IntPtr context);
}
public interface IUiContentDrawer : IDisposable
{
public bool CreateDeviceObjectsAndFonts();
void InitializeScaling();
void RenderCallback();
}