aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/monitor.rs
Commit message (Collapse)AuthorAgeFilesLines
* fix headless build by ensuring NativeMonitorId enum is available internally ↵Ryan Stewart2015-03-181-3/+3
| | | | even without the window feature; add Eq/PartialEq to NativeMonitorId
* expose platform-native monitor identifierRyan Stewart2015-03-161-0/+7
|
* RingBuf -> VecDeque for other platforms, as_slice_with_nul -> as_bytes_with_nulmitchmindtree2015-02-221-3/+3
|
* Upgrade to latest winapiPeter Atashian2015-01-251-2/+3
| | | | Signed-off-by: Peter Atashian <retep998@gmail.com>
* 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