-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is a snapshot of the current state of the xilem prototype built on new infrastructure: glazier for window creation, piet-gpu for drawing, and parley for text. As of this snapshot, only the text widget has been ported, and there are a number of rough edges. It should be considered a proof of concept. That said, it should be possible to build more from here.
- Loading branch information
Showing
18 changed files
with
3,164 additions
and
320 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,16 +1,25 @@ | ||
[package] | ||
name = "xilem" | ||
version = "0.1.0" | ||
license = "Apache-2.0" | ||
authors = ["Raph Levien <raph@google.com>"] | ||
edition = "2021" | ||
|
||
# This is just a bin for now but will be a lib + examples soon | ||
|
||
[dependencies] | ||
"druid-shell" = "0.7" | ||
bitflags = "1.3.2" | ||
glazier = { git = "https://github.com/linebender/glazier" } | ||
piet-gpu-hal = { git = "https://github.com/linebender/piet-gpu" } | ||
piet-gpu = { git = "https://github.com/linebender/piet-gpu" } | ||
piet-scene = { git = "https://github.com/linebender/piet-gpu" } | ||
raw-window-handle = "0.5" | ||
png = "0.16.2" | ||
rand = "0.7.3" | ||
roxmltree = "0.13" | ||
swash = "0.1.4" | ||
bytemuck = { version = "1.7.2", features = ["derive"] } | ||
parley = { git = "https://github.com/dfrg/parley" } | ||
tokio = { version = "1.21", features = ["full"] } | ||
futures-task = "0.3" | ||
tokio = { version = "1", features = ["full"] } | ||
bitflags = "1.3.2" | ||
|
||
[dev-dependencies] | ||
sha2 = "0.10" | ||
hex = "0.4.3" | ||
[patch."https://github.com/dfrg/fount"] | ||
fount = { git = "https://github.com/jneem/fount" } |
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
Oops, something went wrong.