-
-
Notifications
You must be signed in to change notification settings - Fork 99
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
Re-export failure
#111
Comments
Associated error type would do, but different error types from different pipelines still have to be merged. |
zakarumych
pushed a commit
to zakarumych/rendy
that referenced
this issue
May 18, 2019
Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes amethyst#39 amethyst#111
zakarumych
pushed a commit
to zakarumych/rendy
that referenced
this issue
May 18, 2019
Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes amethyst#39 amethyst#111
zakarumych
pushed a commit
to zakarumych/rendy
that referenced
this issue
May 18, 2019
Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes amethyst#39 amethyst#111
bors bot
added a commit
that referenced
this issue
May 20, 2019
133: Cleanup Cargo.toml files r=Frizi a=omni-viral Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes #39 #111 Those changes are mostly code move, renames etc. P.S. Sorry for making this all in one PR Co-authored-by: Zakarum <scareaangel@gmail.com>
bors bot
added a commit
that referenced
this issue
May 20, 2019
133: Cleanup Cargo.toml files r=Frizi a=omni-viral Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes #39 #111 Those changes are mostly code move, renames etc. P.S. Sorry for making this all in one PR Co-authored-by: Zakarum <scareaangel@gmail.com>
bors bot
added a commit
that referenced
this issue
May 20, 2019
133: Cleanup Cargo.toml files r=Frizi a=omni-viral Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes #39 #111 Those changes are mostly code move, renames etc. P.S. Sorry for making this all in one PR Co-authored-by: Zakarum <scareaangel@gmail.com>
bors bot
added a commit
that referenced
this issue
May 20, 2019
133: Cleanup Cargo.toml files r=Frizi a=omni-viral Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes #39 #111 Those changes are mostly code move, renames etc. P.S. Sorry for making this all in one PR Co-authored-by: Zakarum <scareaangel@gmail.com>
bors bot
added a commit
that referenced
this issue
May 20, 2019
127: add specialization constant configuration r=termhn a=termhn 133: Cleanup Cargo.toml files r=Frizi a=omni-viral Remove requirement for enabling features transitively to all crates. All common features now relayed through rendy-util. Make winit optional. Refactor backend matching macros. cargo fmt run. Fixes #39 #111 Those changes are mostly code move, renames etc. P.S. Sorry for making this all in one PR Co-authored-by: Gray Olson <gray@grayolson.com> Co-authored-by: Zakarum <scareaangel@gmail.com>
Since #211 was merged maybe this should be closed? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
SimpleGraphicsPipeline
trait has a method that returnsfailure::Error
: https://docs.rs/rendy/0.1.1/rendy/graph/render/trait.SimpleGraphicsPipeline.html#tymethod.buildThis seems unnecessary since it looks like it could be easy to replace with an associated
Error
type, but if we want to usefailure
we should at least re-export it similar to howgfx_hal
is re-exported. That way if users have a version clash somehow, they at least have a convenient reference to the version offailure
we are using. This honestly isn't likely, given how stablefailure
is, but I find it to be a useful policy.The text was updated successfully, but these errors were encountered: