31 个重大版本发布
使用旧的 Rust 2015
0.31.0 | 2019年4月25日 |
---|---|
0.30.0 | 2019年3月11日 |
0.29.0 | 2019年2月12日 |
0.28.0 | 2018年12月4日 |
0.3.0 | 2015年6月19日 |
#1081 in 图形 API
4,554 每月下载量
在 少于 20 个 库中使用
370KB
7.5K SLoC
gfx_window_glutin
gfx-rs 的 Glutin 窗口后端
用法
确保您的 Cargo.toml
中有以下内容
gfx_core = "0.9"
gfx_device_gl = "0.16"
gfx_window_glutin = "0.30.0"
glutin = "0.20"
然后,如下初始化 gfx
extern crate gfx_core;
extern crate gfx_device_gl;
extern crate gfx_window_glutin;
extern crate glutin;
use gfx_core::format::{DepthStencil, Rgba8};
fn main() {
let events_loop = glutin::EventsLoop::new();
let window_builder = glutin::WindowBuilder::new().with_title("Example".to_owned());
let context = glutin::ContextBuilder::new();
let (window, device, factory, rtv, stv) =
gfx_window_glutin::init::<Rgba8, DepthStencil>(window_builder, context, &events_loop);
// your code
}
依赖项
~3–13MB
~130K SLoC