-
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.
Implemented sprite alpha rendering + updated deps
Also releasing a new update: 0.1.0-dev.5
- Loading branch information
Showing
19 changed files
with
46 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kludgine-app" | ||
version = "0.1.0-dev.4" | ||
version = "0.1.0-dev.5" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2018" | ||
description = "Application and Windowing for Kludgine" | ||
|
@@ -17,7 +17,7 @@ tokio-rt = ["tokio"] | |
smol-rt = ["smol", "smol-timeout", "easy-parallel"] | ||
|
||
[dependencies] | ||
kludgine-core = { version = "0.1.0-dev.4", path = "../core" } | ||
kludgine-core = { version = "0.1.0-dev.5", path = "../core" } | ||
parking_lot = "0.11" | ||
|
||
tracing = { version = "0.1" } | ||
|
@@ -30,7 +30,7 @@ tokio = { version = "1.0", features = ["full"], optional = true } | |
|
||
once_cell = "1" | ||
lazy_static = "1" | ||
platforms = "1" | ||
platforms = "2" | ||
thiserror = "1" | ||
anyhow = "1.0" | ||
futures = "0.3" |
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,6 +1,6 @@ | ||
[package] | ||
name = "kludgine-core" | ||
version = "0.1.0-dev.4" | ||
version = "0.1.0-dev.5" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2018" | ||
description = "2D rendering for Kludgine" | ||
|
@@ -29,8 +29,8 @@ serialization = ["serde", "figures/serde", "palette/serializing"] | |
|
||
[dependencies] | ||
approx = "0.5" | ||
easygpu = "0.0.14" | ||
easygpu-lyon = "0.0.14" | ||
easygpu = "0.0.15" | ||
easygpu-lyon = "0.0.15" | ||
image = { version = ">=0.23.12", default-features = false } | ||
palette = "0.6" | ||
futures-timer = "3" | ||
|
@@ -39,11 +39,11 @@ futures = "0.3" | |
instant = "0.1.9" | ||
flume = "0.10" | ||
rusttype = { version = "0.9", features = ["gpu_cache"] } | ||
platforms = "1" | ||
platforms = "2" | ||
ttf-parser = "0.6" | ||
json = "0.12" | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
winit = "0.25" | ||
winit = "0.26" | ||
bytemuck = { version = "1", features = ["derive"] } | ||
lazy_static = "1" | ||
thiserror = "1" | ||
|
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
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
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,6 +1,6 @@ | ||
[package] | ||
name = "kludgine" | ||
version = "0.1.0-dev.4" | ||
version = "0.1.0-dev.5" | ||
authors = ["Jonathan Johnson <[email protected]>"] | ||
edition = "2018" | ||
description = "An asynchronous app and 2d game framework" | ||
|
@@ -27,8 +27,8 @@ bundled-fonts-roboto = ["kludgine-core/bundled-fonts-roboto"] | |
serialization = ["kludgine-core/serialization"] | ||
|
||
[dependencies] | ||
kludgine-core = { version = "0.1.0-dev.4", path = "../core" } | ||
kludgine-app = { version = "0.1.0-dev.4", path = "../app", optional = true, default-features = false } | ||
kludgine-core = { version = "0.1.0-dev.5", path = "../core" } | ||
kludgine-app = { version = "0.1.0-dev.5", path = "../app", optional = true, default-features = false } | ||
cfg-if = "1" | ||
|
||
# [target.'cfg(target_arch = "wasm32")'.dependencies] | ||
|