Files
2026-07-13 13:15:05 +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();
}