Nicolas Pochet

Results 3 comments of Nicolas Pochet

@isaac-s For the moment, we created a unique management network that can be used by Cloudify. Nevertheless, it is indeed not the most efficient way to do this. Thanks for...

I also got the exact same issue: ``` thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: "Couldn\'t find any pixel format that matches the criterias."', /checkout/src/libcore/result.rs:860:4 stack backtrace:...

As explained here: https://github.com/PistonDevelopers/piston/issues/1202 it now works by adding `srgb(false)` like: ``` let mut window: Window = WindowSettings::new( "spinning-square", [200, 200] ) .opengl(opengl) .exit_on_esc(true) .srgb(false) .build() .unwrap(); ```