aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/win32/init.rs')
-rw-r--r--src/win32/init.rs15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/win32/init.rs b/src/win32/init.rs
index d2aec5e..7e7f399 100644
--- a/src/win32/init.rs
+++ b/src/win32/init.rs
@@ -323,14 +323,25 @@ pub fn new_window(builder: WindowBuilder) -> Result<Window, String> {
};
// building the struct
- tx.send(Ok(Window{
+ let window = Window{
window: real_window,
hdc: hdc,
context: context,
gl_library: gl_library,
events_receiver: events_receiver,
is_closed: AtomicBool::new(false),
- }));
+ };
+
+ // calling glViewport
+ unsafe {
+ use libc;
+ let dimensions = window.get_inner_size().unwrap();
+ ffi::glViewport(0, 0, dimensions.val0() as libc::c_int,
+ dimensions.val1() as libc::c_int);
+ }
+
+ // sending
+ tx.send(Ok(window));
// now that the `Window` struct is initialized, the main `Window::new()` function will
// return and this events loop will run in parallel