From 5be1ac18fe1757d31386f98774d823bd1137eea4 Mon Sep 17 00:00:00 2001 From: Richard Date: Tue, 26 Apr 2022 19:09:09 -0300 Subject: Rename `GraphicsInformation` to `Information` --- glow/src/window/compositor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'glow/src/window') diff --git a/glow/src/window/compositor.rs b/glow/src/window/compositor.rs index f2740f6c..402461bb 100644 --- a/glow/src/window/compositor.rs +++ b/glow/src/window/compositor.rs @@ -67,10 +67,10 @@ impl iced_graphics::window::GLCompositor for Compositor { } } - fn get_information(&self) -> iced_graphics::window::GraphicsInformation { + fn get_information(&self) -> iced_graphics::window::Information { let adapter = unsafe { self.gl.get_parameter_string(glow::RENDERER) }; - iced_graphics::window::GraphicsInformation { + iced_graphics::window::Information { backend: format!("{:?}", self.gl.version()), adapter, } -- cgit