| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
From https://github.com/rust-lang/rfcs/pull/544 the types uint/int were
renamed to usize/isize.
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|\
| |
| | |
Add an interface for providing system wide initialization options to the windowing system.
|
| |
| |
| |
| |
| |
| | |
windowing system.
This allows setting up Linux based systems which use multithreaded OpenGL contexts.
|
|/ |
|
|
|