Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #316 from binsoftware/cocoa-fixes | Brendan Zabarauskas | 2015-03-24 | 1 | -0/+6 |
|\ | | | | | Cocoa fixes: memory leaks, monitor handling, is_current() | ||||
| * | fix headless build by ensuring NativeMonitorId enum is available internally ↵ | Ryan Stewart | 2015-03-18 | 1 | -3/+3 |
| | | | | | | | | even without the window feature; add Eq/PartialEq to NativeMonitorId | ||||
| * | fix X11 build issue due to missing import | Ryan Stewart | 2015-03-16 | 1 | -0/+1 |
| | | |||||
| * | expose platform-native monitor identifier | Ryan Stewart | 2015-03-16 | 1 | -0/+5 |
| | | |||||
* | | Fix compilation by replacing "range" with ".." syntax | Nicholas Bishop | 2015-03-22 | 1 | -1/+1 |
|/ | |||||
* | RingBuf -> VecDeque for other platforms, as_slice_with_nul -> as_bytes_with_nul | mitchmindtree | 2015-02-22 | 1 | -3/+3 |
| | |||||
* | x11, android, win32: [ui]size, [u]int -> [ui]32 | Andrey Lesnikov | 2015-01-13 | 1 | -5/+5 |
| | |||||
* | Change uint/int to usize/isize | Bryan Bell | 2015-01-12 | 1 | -5/+5 |
| | | | | | From https://github.com/rust-lang/rfcs/pull/544 the types uint/int were renamed to usize/isize. | ||||
* | Change the way that events are represented. | Ty Overby | 2015-01-01 | 1 | -5/+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. | ||||
* | fail! -> panic! | Tomaka17 | 2014-10-30 | 1 | -2/+2 |
| | |||||
* | Merge pull request #65 from glennw/x-threads | tomaka | 2014-10-24 | 1 | -0/+3 |
|\ | | | | | Add an interface for providing system wide initialization options to the windowing system. | ||||
| * | Add an interface for providing system wide initialization options to the ↵ | Glenn Watson | 2014-10-24 | 1 | -0/+3 |
| | | | | | | | | | | | | windowing system. This allows setting up Linux based systems which use multithreaded OpenGL contexts. | ||||
* | | Fix closing X display in get_dimensions | Glenn Watson | 2014-10-24 | 1 | -0/+1 |
|/ | |||||
* | Implement headless rendering | Tomaka17 | 2014-10-09 | 1 | -0/+55 |