如何获得 glium 的宽度和高度?

How to get the width and the height in glium?

我在 Rust 中使用 glium。我想获取宽度和高度。

我不能很好地书写和理解英语,因为我是日本人。可能是我的英文有问题,不好意思。

正如我在评论部分提到的,有一个 Display::get_framebuffer_dimensions,所以如果你有 glium::Display 对象,你可以使用它提取 OpenGL 上下文的维度。

pub fn get_framebuffer_dimensions(&self) -> (u32, u32)

Calls get_framebuffer_dimensions on the backend object stored by this context.