-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix benchmarks to use new features * Fix examples to use new features. Also use the new resolver=2 feature resolver for the amethyst dependencies * Add all flag to the git hub tests. * Add a bench github action * Seperated benches
- Loading branch information
1 parent
319b486
commit 2f77b44
Showing
9 changed files
with
80 additions
and
32 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 |
---|---|---|
|
@@ -4,9 +4,10 @@ version = "0.1.0" | |
authors = ["Norman Paniagua <[email protected]>"] | ||
edition = "2018" | ||
description = "3d agnostic framework (game engine) terrain engine." | ||
exclude = ["gaiku-3d/examples/*"] | ||
exclude = ["examples/*", "integrations/*/examples/*"] | ||
keywords = ["3d", "terrain", "engine", "gaiku"] | ||
categories = ["game-engines"] | ||
resolver = "2" | ||
|
||
[features] | ||
default = ["voxel"] | ||
|
@@ -33,6 +34,7 @@ gaiku_format_gox = { path = "crates/gaiku_format_gox", version = "0.1.0", option | |
gaiku_format_png = { path = "crates/gaiku_format_png", version = "0.1.0", optional = true } | ||
|
||
[dev-dependencies] | ||
criterion = "0.3.4" | ||
obj-exporter = "0.2.0" | ||
|
||
[workspace] | ||
|
@@ -44,3 +46,34 @@ members = [ | |
|
||
[profile.release] | ||
lto = true | ||
|
||
[[bench]] | ||
name = "heightmap" | ||
harness = false | ||
required-features = ["heightmap", "gox"] | ||
|
||
[[bench]] | ||
name = "marching_cubes" | ||
harness = false | ||
required-features = ["marching_cubes", "gox"] | ||
|
||
[[bench]] | ||
name = "voxel" | ||
harness = false | ||
required-features = ["voxel", "gox"] | ||
|
||
[[example]] | ||
name = "heightmap" | ||
required-features = ["heightmap", "gox"] | ||
|
||
[[example]] | ||
name = "marching_cubes" | ||
required-features = ["marching_cubes", "gox"] | ||
|
||
[[example]] | ||
name = "voxel" | ||
required-features = ["voxel", "gox"] | ||
|
||
[[example]] | ||
name = "texture" | ||
required-features = ["png"] |
This file was deleted.
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 was deleted.
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