13 lines
388 B
C#
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();
|
|
} |