Skip to content

Commit 3d024dc

Browse files
committed
sample update
1 parent b5ce1d7 commit 3d024dc

File tree

6 files changed

+360
-18
lines changed

6 files changed

+360
-18
lines changed

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ name = "imgui_rust"
1111
serde = "1.0"
1212
serde_derive = "1.0"
1313
serde_json = "1.0"
14+
15+
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
1416
libc = "0.2.9"
1517
imgui-sys = "0.0.21"
1618

examples/helloworld/Cargo.lock

+210-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/helloworld/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ edition = "2018"
66

77
[dependencies]
88
imgui-rust = { path = "../../", features=["stdweb"]}
9-
stdweb = "0.4.10"
9+
glfw = "0.25.0"
10+
gl = "0.11.0"
11+
serde = "1.0.0"
12+
serde_derive = "1.0.0"
1013

1114
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

examples/helloworld/src/main.rs

+45-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,49 @@
1-
#[macro_use]
2-
extern crate stdweb;
1+
extern crate gl;
2+
// include the OpenGL type aliases
3+
use gl::types::*;
34

4-
extern crate imgui_rust;
5+
extern crate glfw;
6+
7+
use glfw::{Action, Context, Key};
58

69
fn main() {
7-
stdweb::initialize();
10+
let mut glfw = glfw::init(glfw::FAIL_ON_ERRORS).unwrap();
11+
12+
// Create a windowed mode window and its OpenGL context
13+
let (mut window, events) = glfw.create_window(300, 300, "Hello this is window", glfw::WindowMode::Windowed)
14+
.expect("Failed to create GLFW window.");
15+
16+
// Make the window's context current
17+
window.make_current();
18+
19+
gl::load_with(|s| glfw.get_proc_address_raw(s));
20+
21+
// loading a specific function pointer
22+
gl::Viewport::load_with(|s| glfw.get_proc_address_raw(s));
23+
24+
window.set_key_polling(true);
25+
26+
// Loop until the user closes the window
27+
while !window.should_close() {
28+
// render
29+
unsafe{
30+
gl::ClearColor(1.0,0.0,0.0,0.0);
31+
gl::Clear(gl::COLOR_BUFFER_BIT);
32+
}
33+
34+
// Swap front and back buffers
35+
window.swap_buffers();
836

9-
let im = imgui_rust::Imgui::new();
10-
im.IMGUI_CHECKVERSION();
11-
}
37+
// Poll for and process events
38+
glfw.poll_events();
39+
for (_, event) in glfw::flush_messages(&events) {
40+
println!("{:?}", event);
41+
match event {
42+
glfw::WindowEvent::Key(Key::Escape, _, Action::Press, _) => {
43+
window.set_should_close(true)
44+
},
45+
_ => {},
46+
}
47+
}
48+
}
49+
}

0 commit comments

Comments
 (0)