aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/window.rs b/examples/window.rs
index 1d3b615..4077399 100644
--- a/examples/window.rs
+++ b/examples/window.rs
@@ -24,6 +24,8 @@ fn main() {
window.set_window_resize_callback(Some(resize_callback as fn(u32, u32)));
unsafe { window.make_current() };
+ println!("Pixel format of the window: {:?}", window.get_pixel_format());
+
let context = support::load(&window);
while !window.is_closed() {