-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Simplify renderdoc-sys/generated_bindings.sh * Regenerate renderdoc-sys/src/bindings.rs with bindgen 0.64.0 * Bump renderdoc-sys crate version to 1.0.0 It's high time for this crate to commit to a 1.x semantic versioning range. The likelihood this API will continue to churn is very low, and if it ever does, compatibility guarantees should be conveyed explicitly using the crate version number. * Improve renderdoc-sys documentation * Remove unused bindgen flags from generate_bindings.sh * Remove renderdoc-sys from workspace default members * Improve renderdoc crate documentation * Gracefully handle RenderDoc absence in triangle.rs example According to the upstream RenderDoc documentation, applications should not panic if RenderDoc isn't loaded. Instead, they should handle its absence gracefully and continue running. The `triangle.rs` example should demonstrate this usage clearly. We should update the `README.md` accordingly too, but considering a total rewrite of this library is coming very soon, it probably isn't worth investing too much time into that. * Bump renderdoc crate version to 0.11.0 * Update CHANGELOG.md * Update copyright year in license file
- Loading branch information
1 parent
18307f9
commit b75f7ea
Showing
11 changed files
with
112 additions
and
54 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[package] | ||
name = "renderdoc-sys" | ||
version = "0.7.1" | ||
version = "1.0.0" | ||
authors = ["Eyal Kalderon <ebkalderon@gmail.com>"] | ||
description = "Raw FFI bindings to the RenderDoc API" | ||
description = "Low-level bindings to the RenderDoc API" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/ebkalderon/renderdoc-rs/tree/master/renderdoc-sys" | ||
repository = "https://github.com/ebkalderon/renderdoc-rs" | ||
documentation = "https://docs.rs/renderdoc-sys/" | ||
documentation = "https://docs.rs/renderdoc-sys" | ||
readme = "README.md" | ||
keywords = ["ffi", "renderdoc"] | ||
exclude = ["/vendor"] | ||
keywords = ["ffi", "graphics", "profiling", "renderdoc", "tracing"] | ||
categories = ["development-tools::debugging", "external-ffi-bindings", "rendering"] | ||
|
||
[badges] | ||
circle-ci = { repository = "ebkalderon/renderdoc-rs" } | ||
maintenance = { status = "passively-maintained" } | ||
|
||
[dependencies] |
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
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