paulotten

Results 31 comments of paulotten

``` Compiling arboard v2.1.1 [...] error[E0433]: failed to resolve: use of undeclared type `PlatformClipboard` --> C:\Users\Main\.cargo\registry\src\github.com-1ecc6299db9ec823\arboard-2.1.1\src\lib.rs:69:28 | 69 | Ok(Clipboard { platform: PlatformClipboard::new()? }) | ^^^^^^^^^^^^^^^^^ use of undeclared type...

``` Compiling glutin v0.28.0 [...] error[E0599]: no method named `set_suspend_callback` found for reference `&EventLoopWindowTarget` in the current scope --> C:\Users\Main\.cargo\registry\src\github.com-1ecc6299db9ec823\glutin-0.28.0\src\api\android\mod.rs:76:12 | 76 | el.set_suspend_callback(Some(Box::new(move |suspended| { | ^^^^^^^^^^^^^^^^^^^^ method not...

Updating to `glutin = { version = "0.29.0" }` results in the following error **when building for Windows** ``` Compiling glutin v0.29.0 error[E0425]: cannot find value `BUFFER_AGE_EXT` in module `ffi::egl`...

> Updating to `glutin = { version = "0.29.0" }` results in the following error **when building for Windows** > > ``` > Compiling glutin v0.29.0 > error[E0425]: cannot find...

> note: perhaps two different versions of crate `winit` are being used? `rustc` may to be right on this. https://crates.io/crates/glutin/0.29.0/dependencies reports `winit` `^0.27.1`. https://crates.io/crates/eframe/0.18.0/dependencies reports `^0.26.1`.

Updating `winit` to `0.27.1` get me compiling successfully for both Windows and Android! On Android I'm just getting a black screen when the app runs though. I've also picked up...

So I seem to be duplicating https://github.com/emilk/egui/pull/1877. Maybe I should wait on that?

> I've also picked up a deprecated warning. Fixed. https://github.com/emilk/egui/commit/d9d4f7e9f23238fd3aba5dbd72d775c785c61f5d

> On Android I'm just getting a black screen when the app runs though. `adb` shows the following error: ``` 08-10 11:08:53.546 25253 25293 I RustStdoutStderr: thread '' panicked at...

Recommend marking as a duplicate of #1622 (which I implemented).