diff options
author | 2022-04-26 19:09:09 -0300 | |
---|---|---|
committer | 2022-04-26 19:09:09 -0300 | |
commit | 5be1ac18fe1757d31386f98774d823bd1137eea4 (patch) | |
tree | 07c5b9eb77f7a55f10e2b257569a62ba2b62a38d /glow/src/window | |
parent | 7a13928130803629b15999923da3a9747e110e7a (diff) | |
download | iced-5be1ac18fe1757d31386f98774d823bd1137eea4.tar.gz iced-5be1ac18fe1757d31386f98774d823bd1137eea4.tar.bz2 iced-5be1ac18fe1757d31386f98774d823bd1137eea4.zip |
Rename `GraphicsInformation` to `Information`
Diffstat (limited to 'glow/src/window')
-rw-r--r-- | glow/src/window/compositor.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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, } |