aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32
diff options
context:
space:
mode:
authorGlenn Watson <gw@intuitionlibrary.com>2014-12-16 15:49:22 +1000
committerGlenn Watson <gw@intuitionlibrary.com>2014-12-19 05:44:20 +1000
commit0ad9c3d453076adc5d94008d7e155d7ee5536225 (patch)
tree21deae10784df127b9989e2cfe4a472686ff1655 /src/win32
parent0164449955d1b4787fce03f8800e32f19fd04a01 (diff)
downloadglutin-0ad9c3d453076adc5d94008d7e155d7ee5536225.tar.gz
glutin-0ad9c3d453076adc5d94008d7e155d7ee5536225.zip
Add callback function to allow resize messages to be sent on mac.
Diffstat (limited to 'src/win32')
-rw-r--r--src/win32/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index 978e3b5..2e0dcae 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -46,6 +46,9 @@ impl HeadlessContext {
pub fn get_api(&self) -> ::Api {
::Api::OpenGl
}
+
+ pub fn set_window_resize_callback(&mut self, _: fn(uint, uint)) {
+ }
}
/// The Win32 implementation of the main `Window` object.
@@ -276,6 +279,9 @@ impl Window {
pub fn get_api(&self) -> ::Api {
::Api::OpenGl
}
+
+ pub fn set_window_resize_callback(&mut self, _: fn(uint, uint)) {
+ }
}
#[unsafe_destructor]