Giorgio Ghisotti

Results 1 issues of Giorgio Ghisotti

The [first example](https://docs.rs/glium/0.23.0/glium/#initialization) in the documentation reads: ```rust let window = glium::glutin::WindowBuilder::new() .with_dimensions(1024, 768) .with_title("Hello world"); ``` but this fails to compile; `with_dimensions()` wants a `glutin::dpi::LogicalSize` type as input, so...