mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 13:23:40 +01:00
fixese
This commit is contained in:
parent
5367d288d6
commit
0aa75306d4
8 changed files with 301 additions and 95 deletions
|
|
@ -180,10 +180,15 @@ public partial interface ITextureProvider
|
|||
int dxgiFormat = 0,
|
||||
CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary>Gets the supported image file extensions.</summary>
|
||||
/// <summary>Gets the supported image file extensions available for loading.</summary>
|
||||
/// <returns>The supported extensions. Each <c>string[]</c> entry indicates that there can be multiple extensions
|
||||
/// that correspond to one container format.</returns>
|
||||
IEnumerable<string[]> GetSupportedImageExtensions();
|
||||
IEnumerable<string[]> GetLoadSupportedImageExtensions();
|
||||
|
||||
/// <summary>Gets the supported image file extensions available for saving.</summary>
|
||||
/// <returns>The supported extensions. Each <c>string[]</c> entry indicates that there can be multiple extensions
|
||||
/// that correspond to one container format.</returns>
|
||||
IEnumerable<string[]> GetSaveSupportedImageExtensions();
|
||||
|
||||
/// <summary>Saves a texture wrap to a stream in an image file format.</summary>
|
||||
/// <param name="wrap">The texture wrap to save.</param>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue