-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate the repository to a virtual workspace. #590
Merged
Merged
Changes from 9 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0fc2e71
Move files to their new locations.
xStrom e345a05
Make `Cargo.toml` files compatible with the directory structure.
xStrom 7f79c30
Update shader directory references to the new structure.
xStrom 0542a18
Update `with_winit` hot reloading shader directory reference.
xStrom e8c2cfd
Update some of the documentation to reflect the new structure.
xStrom 577846b
Add license files to all published packages.
xStrom fdb73f3
Restore support for hermetic build environments.
xStrom cdf847e
Read `CARGO_MANIFEST_DIR` at runtime into an `OsString`.
xStrom 1ffed14
Add a central function to determine the shader path.
xStrom 8e04930
Add note about reproducible builds.
xStrom d8026b1
Fix typo.
xStrom eb2686e
Remove optional appendix from Apache 2.0 license files.
xStrom 31ab074
Add note about compiling machine.
xStrom 9368967
Add basic docs to the `vello_shaders` root module.
xStrom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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,37 @@ | ||
[package] | ||
name = "vello" | ||
version.workspace = true | ||
description = "An experimental GPU compute-centric 2D renderer." | ||
categories = ["rendering", "graphics"] | ||
keywords = ["2d", "vector-graphics"] | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[features] | ||
default = ["wgpu"] | ||
# Enables GPU memory usage estimation. This performs additional computations | ||
# in order to estimate the minimum required allocations for buffers backing | ||
# bump-allocated GPU memory. | ||
# TODO: Turn this into a runtime option used at resolve time and remove the feature. | ||
bump_estimate = ["vello_encoding/bump_estimate"] | ||
hot_reload = ["vello_shaders/compile"] | ||
buffer_labels = [] | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
vello_encoding = { workspace = true } | ||
vello_shaders = { workspace = true } | ||
bytemuck = { workspace = true } | ||
skrifa = { workspace = true } | ||
peniko = { workspace = true } | ||
wgpu = { workspace = true, optional = true } | ||
log = { workspace = true } | ||
raw-window-handle = { workspace = true } | ||
static_assertions = { workspace = true } | ||
futures-intrusive = { workspace = true } | ||
wgpu-profiler = { workspace = true, optional = true } | ||
thiserror = { workspace = true } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd add a big comment at the top that this is "temporarily" duplicated in the
vello
folder, and updates should be preferred there.