-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Imazen.WebP and copy bindings to common project
- Loading branch information
1 parent
5962c9c
commit df634ef
Showing
18 changed files
with
1,933 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
Source/ImoutoRebirth.Common/ImoutoRebirth.Common.WebP/Extern/Constants.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// ReSharper disable InconsistentNaming | ||
namespace ImoutoRebirth.Common.WebP.Extern; | ||
|
||
public partial class NativeMethods | ||
{ | ||
/// WEBP_DECODER_ABI_VERSION 0x0208 // MAJOR(8b) + MINOR(8b) | ||
public const int WEBP_DECODER_ABI_VERSION = 520; | ||
|
||
/// WEBP_ENCODER_ABI_VERSION 0x0209 // MAJOR(8b) + MINOR(8b) | ||
public const int WEBP_ENCODER_ABI_VERSION = 521; | ||
|
||
/// <summary> | ||
/// The maximum length of any dimension of a WebP image is 16383 | ||
/// </summary> | ||
public const int WEBP_MAX_DIMENSION = 16383; | ||
} |
Oops, something went wrong.