This file contains hidden or 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
| error[E0277]: `ash::Instance<ash::version::V1_0>` doesn't implement `std::fmt::Debug` | |
| --> src/backend/vulkan/src/lib.rs:92:5 | |
| | | |
| 92 | pub ash::Instance<V1_0>, | |
| | ^^^^^^^^^^^^^^^^^^^^^^^ `ash::Instance<ash::version::V1_0>` cannot be formatted using `{:?}` because it doesn't implement `std::fmt::Debug` | |
| | |
This file contains hidden or 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
| diff --git a/examples/Cargo.toml b/examples/Cargo.toml | |
| index ff03e16a7..59601814c 100644 | |
| --- a/examples/Cargo.toml | |
| +++ b/examples/Cargo.toml | |
| @@ -28,7 +28,7 @@ path = "compute/main.rs" | |
| env_logger = "0.5" | |
| image = "0.19" | |
| log = "0.4" | |
| -winit = "0.17" | |
| +winit = "0.18" |
This file contains hidden or 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
| diff --git a/src/api/egl/mod.rs b/src/api/egl/mod.rs | |
| index e85c66f..25a7b65 100644 | |
| --- a/src/api/egl/mod.rs | |
| +++ b/src/api/egl/mod.rs | |
| @@ -39,7 +39,7 @@ pub struct Context { | |
| egl: ffi::egl::Egl, | |
| display: ffi::egl::types::EGLDisplay, | |
| context: ffi::egl::types::EGLContext, | |
| - surface: Cell<ffi::egl::types::EGLSurface>, | |
| + //surface: Cell<ffi::egl::types::EGLSurface>, |
NewerOlder