mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-01 21:33:39 +01:00
Remove CancellationToken from GetFromRaw(Sync)
This commit is contained in:
parent
80875247b6
commit
3bf907002f
2 changed files with 3 additions and 6 deletions
|
|
@ -152,12 +152,10 @@ public partial interface ITextureProvider
|
|||
/// <summary>Gets a texture from the given bytes, interpreting it as a raw bitmap.</summary>
|
||||
/// <param name="specs">The specifications for the raw bitmap.</param>
|
||||
/// <param name="bytes">The bytes to load.</param>
|
||||
/// <param name="cancellationToken">The cancellation token.</param>
|
||||
/// <returns>The texture loaded from the supplied raw bitmap. Dispose after use.</returns>
|
||||
IDalamudTextureWrap GetFromRaw(
|
||||
RawImageSpecification specs,
|
||||
ReadOnlySpan<byte> bytes,
|
||||
CancellationToken cancellationToken = default);
|
||||
ReadOnlySpan<byte> bytes);
|
||||
|
||||
/// <summary>Gets a texture from the given bytes, interpreting it as a raw bitmap.</summary>
|
||||
/// <param name="specs">The specifications for the raw bitmap.</param>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue