Expose CopyImageError and DrawIndexedIndirectError (#1112)

I noticed that these two were missing a pub export while reading through
the docs.
This commit is contained in:
mitchmindtree 2018-11-14 18:01:06 +07:00 committed by Lucas Kent
parent ff9cc0d9a2
commit b88a982aac
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
# Unreleased
- Expose `CopyImageError` and `DrawIndexedIndirectError`.
# Version 0.11.0 (2018-11-08)
- Update to winit 0.18

View File

@ -82,9 +82,11 @@ pub use self::auto::BuildError;
pub use self::auto::ClearColorImageError;
pub use self::auto::CopyBufferError;
pub use self::auto::CopyBufferImageError;
pub use self::auto::CopyImageError;
pub use self::auto::DispatchError;
pub use self::auto::DrawError;
pub use self::auto::DrawIndexedError;
pub use self::auto::DrawIndexedIndirectError;
pub use self::auto::DrawIndirectError;
pub use self::auto::ExecuteCommandsError;
pub use self::auto::FillBufferError;