aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/monitor.rs
Commit message (Collapse)AuthorAgeFilesLines
* x11, android, win32: [ui]size, [u]int -> [ui]32Andrey Lesnikov2015-01-131-7/+7
|
* Update for RustcPierre Krieger2015-01-051-1/+1
|
* Update for RustcPierre Krieger2015-01-031-1/+1
|
* Change the way that events are represented.Ty Overby2015-01-011-4/+6
| | | | | | | | | | The bulk of this commit is changing instances of Vec to RingBuf which is optimized for the push_back() / pop_front() strategy that is used internaly in the event system. The glutin custom iterators are now just wrappers around the RingBuf iterator type. This will bring the running time of iterator traversal from O(n^2) to O(n) because shifting-on-delete won't be performed.
* Use the winapi crate instead of our own ffiPierre Krieger2014-12-021-15/+15
|
* fail! -> panic!Tomaka172014-10-301-1/+1
|
* Fix compilation warningsTomaka172014-09-231-1/+1
|
* Add get_dimensions() to MonitorIDTomaka172014-08-021-2/+17
|
* Add documentation to the Win32 implementationTomaka172014-08-011-11/+48
|
* Add monitor support for win32Tomaka172014-07-311-0/+79