Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Add mouse cursor support | Bryan Bell | 2015-01-12 | 9 | -3/+174 | |
| | | | | | | | | | | | | | | | | | | | | | Add a new api, window.set_cursor, for setting the cursor. The enum MouseCursor lists the possible cursors. Only X11 is implemented. On OSX, Android, & Win32 the window.set_cursor function either does nothing or calls the "unimplemented!" macro. | |||||
* | | | Merge pull request #195 from tomaka/appveyor-badge | tomaka | 2015-01-13 | 1 | -0/+1 | |
|\ \ \ | | | | | | | | | Add appveyor build status in README | |||||
| * | | | Add appveyor build status in README | Pierre Krieger | 2015-01-13 | 1 | -0/+1 | |
|/ / / | ||||||
* | | | Merge pull request #193 from bjwbell/int-and-uint-to-u-and-isize | tomaka | 2015-01-13 | 4 | -35/+35 | |
|\ \ \ | |/ / |/| | | Change uint/int to usize/isize | |||||
| * | | Change uint/int to usize/isize | Bryan Bell | 2015-01-12 | 4 | -35/+35 | |
|/ / | | | | | | | | | From https://github.com/rust-lang/rfcs/pull/544 the types uint/int were renamed to usize/isize. | |||||
* | | Merge pull request #191 from sbward/osx-1.0-alpha | tomaka | 2015-01-12 | 3 | -16/+26 | |
|\ \ | | | | | | | OSX compatibility for Rust 1.0 alpha | |||||
| * | | Revert arch_64 feature flag for rust-cocoa | Sam Ward | 2015-01-11 | 1 | -1/+0 | |
| | | | ||||||
| * | | OSX compatibility for Rust 1.0 alpha | Sam Ward | 2015-01-10 | 3 | -16/+27 | |
| | | | ||||||
* | | | Bump version number | Pierre Krieger | 2015-01-10 | 1 | -2/+2 | |
|/ / | ||||||
* | | Merge pull request #190 from tomaka/update-rustc | tomaka | 2015-01-10 | 8 | -14/+11 | |
|\ \ | | | | | | | Update for rust alpha 1.0 | |||||
| * | | Update for rust alpha 1.0 | Pierre Krieger | 2015-01-10 | 8 | -14/+11 | |
|/ / | ||||||
* | | Merge pull request #189 from ozkriff/master | tomaka | 2015-01-08 | 1 | -5/+3 | |
|\ \ | | | | | | | android: Updated for Rust ea6f65c5f 2015-01-06 | |||||
| * | | android: Updated for Rust ea6f65c5f 2015-01-06 | Andrey Lesnikov | 2015-01-08 | 1 | -5/+3 | |
|/ / | ||||||
* | | Merge pull request #187 from tomaka/update-rustc | tomaka | 2015-01-08 | 10 | -58/+52 | |
|\ \ | | | | | | | Update for Rustc | |||||
| * \ | Merge remote-tracking branch 'cybergeek94/master' into update-rustc | Pierre Krieger | 2015-01-08 | 3 | -27/+34 | |
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/support/mod.rs src/lib.rs tests/headless.rs | |||||
| | * | | Update to latest Rust nightly | Austin Bonander | 2015-01-08 | 5 | -37/+41 | |
| |/ / |/| | | ||||||
| * | | Update for Rustc | Pierre Krieger | 2015-01-08 | 8 | -31/+18 | |
|/ / | ||||||
* | | Merge pull request #186 from tomaka/update-rustc | tomaka | 2015-01-05 | 4 | -8/+8 | |
|\ \ | | | | | | | Update for Rustc | |||||
| * | | Update for Rustc | Pierre Krieger | 2015-01-05 | 4 | -8/+8 | |
|/ / | ||||||
* | | Merge pull request #184 from mikedilger/upstream_fallout | tomaka | 2015-01-05 | 1 | -3/+7 | |
|\ \ | | | | | | | fix for Iterator now using associated types | |||||
| * | | fix for Iterator now using associated types | Mike Dilger | 2015-01-05 | 1 | -3/+7 | |
|/ / | ||||||
* | | Merge pull request #183 from ozkriff/master | tomaka | 2015-01-04 | 1 | -2/+3 | |
|\ \ | | | | | | | android: Updated for rust fc2ba1393 2015-01-03 | |||||
| * | | android: Updated for rust fc2ba1393 2015-01-03 | Andrey Lesnikov | 2015-01-04 | 1 | -2/+3 | |
|/ / | ||||||
* | | Merge pull request #181 from tomaka/update-rustc | tomaka | 2015-01-03 | 12 | -27/+32 | |
|\ \ | | | | | | | Update for Rustc | |||||
| * | | Update for Rustc | Pierre Krieger | 2015-01-03 | 12 | -27/+32 | |
|/ / | ||||||
* | | Merge pull request #180 from TyOverby/event-change | tomaka | 2015-01-02 | 8 | -65/+77 | |
|\ \ | | | | | | | Change the way that event iterators are represented. | |||||
| * | | Change the way that events are represented. | Ty Overby | 2015-01-01 | 8 | -65/+77 | |
|/ / | | | | | | | | | | | | | | | | | | | 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. | |||||
* | | Fix dependencies erroneously removed | Pierre Krieger | 2014-12-31 | 1 | -0/+15 | |
| | | ||||||
* | | Merge pull request #173 from tomaka/change-builder-attribs | tomaka | 2014-12-31 | 8 | -61/+131 | |
|\ \ | | | | | | | Finalize window building API | |||||
| * | | Add missing `with_*` functions | Pierre Krieger | 2014-12-31 | 1 | -0/+35 | |
| | | | ||||||
| * | | Add `build_strict` function on builders | Pierre Krieger | 2014-12-31 | 1 | -0/+20 | |
| | | | ||||||
| * | | Unify WindowBuilder and HeadlessRendererBuilder for easier implementations | Pierre Krieger | 2014-12-31 | 8 | -61/+76 | |
|/ / | ||||||
* | | Bump version number | Pierre Krieger | 2014-12-30 | 1 | -16/+1 | |
| | | ||||||
* | | Merge pull request #179 from tomaka/use-cratesio | tomaka | 2014-12-30 | 1 | -3/+3 | |
|\ \ | | | | | | | Use gl_common and gl_generator from crates.io | |||||
| * | | Use gl_common and gl_generator from crates.io | Pierre Krieger | 2014-12-30 | 1 | -3/+3 | |
| | | | ||||||
* | | | Merge pull request #178 from tomaka/update-rustc | tomaka | 2014-12-30 | 8 | -4/+41 | |
|\| | | |/ |/| | Update for changes in Send/Sync traits | |||||
| * | Update for changes in Send/Sync traits | Pierre Krieger | 2014-12-30 | 8 | -4/+41 | |
|/ | ||||||
* | Merge pull request #174 from tomaka/travis-docs-headless | tomaka | 2014-12-28 | 1 | -1/+1 | |
|\ | | | | | Generate docs for headless functionnalities too | |||||
| * | Generate docs for headless functionnalities too | Pierre Krieger | 2014-12-28 | 1 | -1/+1 | |
|/ | ||||||
* | Merge pull request #172 from ozkriff/master | tomaka | 2014-12-26 | 2 | -12/+7 | |
|\ | | | | | Removed 'extern crate gl_generator' and implemented 'poll_events' | |||||
| * | android: Implemented basic poll_events() | Andrey Lesnikov | 2014-12-26 | 1 | -10/+7 | |
| | | ||||||
| * | Removed 'extern crate gl_generator' | Andrey Lesnikov | 2014-12-26 | 1 | -2/+0 | |
|/ | ||||||
* | Merge pull request #171 from tomaka/update-gl-generator | tomaka | 2014-12-24 | 7 | -57/+79 | |
|\ | | | | | Update for gl_generator's changes | |||||
| * | Update for gl_generator's changes | Pierre Krieger | 2014-12-24 | 7 | -57/+79 | |
| | | ||||||
* | | Merge pull request #168 from tomaka/fix-appveyor | tomaka | 2014-12-23 | 1 | -1/+1 | |
|\| | | | | | Fix the appveyor build | |||||
| * | Fix the appveyor build | Pierre Krieger | 2014-12-23 | 1 | -1/+1 | |
|/ | ||||||
* | Merge pull request #170 from tomaka/update-rustc | tomaka | 2014-12-23 | 3 | -14/+20 | |
|\ | | | | | Update for rustc | |||||
| * | Update for rustc | Pierre Krieger | 2014-12-23 | 3 | -14/+20 | |
| | | ||||||
* | | Merge pull request #169 from glennw/mac-vis | tomaka | 2014-12-23 | 1 | -1/+1 | |
|\ \ | |/ |/| | Fix passing visibility through for mac. | |||||
| * | Fix passing visibility through for mac. | Glenn Watson | 2014-12-23 | 1 | -1/+1 | |
|/ |