-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support parsing satellite libs, parse image
- Loading branch information
Showing
14 changed files
with
2,765 additions
and
155 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,4 +12,5 @@ members = [ | |
default-members = [ | ||
"sdl3-sys", | ||
"sdl3-main", | ||
"sdl3-image-sys", | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This crate contains the source code of the SDL3_image library. It's used by the | ||
`sdl3-image-sys` crate when building from source. |
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 |
---|---|---|
@@ -1 +1,26 @@ | ||
#![no_std] | ||
#![doc = include_str!("../README.md")] | ||
|
||
/// Location of the SDL3_image source code | ||
#[cfg(not(windows))] | ||
pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/SDL_image"); | ||
#[cfg(windows)] | ||
pub const SOURCE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "\\SDL_image"); | ||
|
||
/// Revision | ||
pub const REVISION: &str = "SDL3_image-preview-3.1.0"; | ||
|
||
/// Version part of the revision | ||
pub const VERSION: &str = "3.1.0"; | ||
|
||
/// Tag part of the revision | ||
pub const REVISION_TAG: &str = "preview-3.1.0"; | ||
|
||
/// Tag part of the revision without version | ||
pub const REVISION_TAG_BASE: &str = "preview"; | ||
|
||
/// Offset from tag part of the revision | ||
pub const REVISION_OFFSET: &str = "0"; | ||
|
||
/// Hash part of the revision | ||
pub const REVISION_HASH: &str = "g33d18dd9"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# sdl3-image-sys | ||
|
||
This version of `sdl3-image sys` has bindings for SDL_image version `3.1.0-preview` and earlier. |
Oops, something went wrong.