Interface IFontAtlasBuildToolkitPreBuild
Toolkit for use when the build state is Dalamud.Interface.ManagedFontAtlas.FontAtlasBuildStep.PreBuild.
Not intended for plugins to implement.
After Dalamud.Interface.ManagedFontAtlas.FontAtlasBuildStepDelegate returns, either Dalamud.Interface.ManagedFontAtlas.IFontAtlasBuildToolkit.Font must be set, or at least one font must have been added to the atlas using one of AddFont... functions.
Assembly: Dalamud.dll
Declaration
public interface IFontAtlasBuildToolkitPreBuild : IFontAtlasBuildToolkit
Methods
DisposeAfterBuild<T>(T)
Queues an item to be disposed after the whole build process gets complete, successful or not.
Declaration
T DisposeAfterBuild<T>(T disposable) where T : IDisposable
Returns
<T>: The same <code class="paramref">disposable</code>.
Parameters
| Type | Name | Description |
|---|---|---|
<T> | disposable | The disposable. |
Type Parameters
| Name | Description |
|---|---|
T | Disposable type. |
DisposeAfterBuild(GCHandle)
Queues an item to be disposed after the whole build process gets complete, successful or not.
Declaration
GCHandle DisposeAfterBuild(GCHandle gcHandle)