-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
57a5b67
commit 716116d
Showing
11 changed files
with
34 additions
and
28 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "rend3-cube-example" | ||
license = "MIT OR Apache-2.0 OR Zlib" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
@@ -16,8 +16,8 @@ path = "src/main.rs" | |
# Linear algebra library | ||
glam = "0.13" | ||
# Renderer | ||
rend3 = { path = "../../rend3", version = "^0.0.4"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.4"} | ||
rend3 = { path = "../../rend3", version = "^0.0.5"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.5"} | ||
# Provides `block_on` to wait for futures from sync code | ||
pollster = "0.2" | ||
# wgpu-aware logging | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "rend3-gltf-example" | ||
license = "MIT OR Apache-2.0 OR Zlib" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
@@ -18,8 +18,8 @@ glam = "0.13" | |
# parsing model files | ||
gltf = { version = "0.15.2", features = [ "utils" ] } | ||
# Renderer | ||
rend3 = { path = "../../rend3", version = "^0.0.4"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.4"} | ||
rend3 = { path = "../../rend3", version = "^0.0.5"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.5"} | ||
# Provides `block_on` to wait for futures from sync code | ||
pollster = "0.2" | ||
# wgpu-aware logging | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "rend3-imgui-example" | ||
license = "MIT OR Apache-2.0 OR Zlib" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
@@ -16,8 +16,8 @@ path = "src/main.rs" | |
# Linear algebra library | ||
glam = "0.13" | ||
# Renderer | ||
rend3 = { path = "../../rend3", version = "^0.0.4"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.4"} | ||
rend3 = { path = "../../rend3", version = "^0.0.5"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.5"} | ||
# imgui and integrations | ||
imgui = "0.7" | ||
imgui-winit-support = "0.7" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "rend3-scene-viewer-example" | ||
license = "MIT OR Apache-2.0 OR Zlib" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
publish = false | ||
|
@@ -21,9 +21,9 @@ image = { version = "0.23", default-features = false, features = ["png", "jpeg", | |
histogram = "0.6" | ||
pico-args = "0.4" | ||
pollster = "0.2" | ||
rend3 = { path = "../../rend3", version = "^0.0.4"} | ||
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.4"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.4"} | ||
rend3 = { path = "../../rend3", version = "^0.0.5"} | ||
rend3-gltf = { path = "../../rend3-gltf", version = "^0.0.5"} | ||
rend3-list = { path = "../../rend3-list", version = "^0.0.5"} | ||
smallvec = "1" | ||
tracing = { version = "0.1", default-features = false, features = ["std"] } | ||
wgpu = "0.7" | ||
|
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 = "rend3-gltf" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
description = "gltf scene and model loader for rend3" | ||
|
@@ -16,5 +16,5 @@ glam = "0.13" | |
futures-util = "0.3" | ||
fnv = "1" | ||
image = "0.23" | ||
rend3 = { version = "^0.0.4", path = "../rend3" } | ||
rend3 = { version = "^0.0.5", path = "../rend3" } | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rend3-list" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
description = "default renderlist rend3" | ||
|
@@ -10,4 +10,4 @@ keywords = ["3d", "graphics", "gpu", "renderer", "wgpu"] | |
categories = ["game-development", "graphics", "rendering", "rendering::engine"] | ||
|
||
[dependencies] | ||
rend3 = { version = "^0.0.4", path = "../rend3" } | ||
rend3 = { version = "^0.0.5", path = "../rend3" } |
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 = "rend3" | ||
version = "0.0.4" | ||
version = "0.0.5" | ||
authors = ["Connor Fitzgerald <[email protected]>"] | ||
edition = "2018" | ||
description = "Easy to use, customizable, efficient 3D renderer library built on wgpu." | ||
|
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