-
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.
This commit should have no functionality changes except for edge case handling. The public interface has been pruned so that the types listed by rustdoc are the minimal types, and a lot of this was done by consolidating the wgpu pipeline logic into a new pipeline module. Next, I added safety comments for unsafe usage. There's only a few usages for wgpu and the rest are empty bytemuck::Pod implementations. The rest of the changes are the fallout from enabling clippy::pedantic and adding a rustfmt.toml.
- Loading branch information
Showing
15 changed files
with
899 additions
and
728 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Kludgine (Redux) | ||
|
||
This branch is a rewrite of Kludgine, aiming to be a lightweight, efficient 2d | ||
rendering option for `wgpu`-based applications. |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
unstable_features = true | ||
use_field_init_shorthand = true | ||
imports_granularity = "Module" | ||
group_imports = "StdExternalCrate" | ||
format_code_in_doc_comments = true | ||
reorder_impl_items = true |
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
Oops, something went wrong.