Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | 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 |
| | |||||
* | Update for changes in Send/Sync traits | Pierre Krieger | 2014-12-30 | 7 | -2/+39 |
| | |||||
* | 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 |
| | |||||
* | Update for gl_generator's changes | Pierre Krieger | 2014-12-24 | 3 | -37/+5 |
| | |||||
* | Merge pull request #170 from tomaka/update-rustc | tomaka | 2014-12-23 | 1 | -10/+10 |
|\ | | | | | Update for rustc | ||||
| * | Update for rustc | Pierre Krieger | 2014-12-23 | 1 | -10/+10 |
| | | |||||
* | | Fix passing visibility through for mac. | Glenn Watson | 2014-12-23 | 1 | -1/+1 |
|/ | |||||
* | Fix win32 build without the "window" feature | Pierre Krieger | 2014-12-20 | 1 | -1/+0 |
| | |||||
* | Add semicolons after macro invocations, as required by the latest nightly. | Michael Powell | 2014-12-19 | 1 | -1/+1 |
| | |||||
* | Add support for visible parameter on mac. | Glenn Watson | 2014-12-19 | 1 | -3/+7 |
| | |||||
* | Add experimental attribute since this API will need to be cleaned up. | Glenn Watson | 2014-12-19 | 1 | -0/+2 |
| | |||||
* | Add resize example, fix warnings, make callback an option so it can be removed. | Glenn Watson | 2014-12-19 | 6 | -20/+19 |
| | |||||
* | Add callback function to allow resize messages to be sent on mac. | Glenn Watson | 2014-12-19 | 6 | -32/+102 |
| | |||||
* | Merge pull request #161 from glennw/thread-proxy | tomaka | 2014-12-18 | 8 | -52/+187 |
|\ | | | | | Introduce a WindowProxy for accessing a subset of functionality | ||||
| * | Change todo to unimplemented | Glenn Watson | 2014-12-19 | 2 | -2/+2 |
| | | |||||
| * | Add mac implementation of wakeup_event_loop. | Glenn Watson | 2014-12-18 | 1 | -1/+17 |
| | | |||||
| * | Fix event name | Glenn Watson | 2014-12-18 | 2 | -4/+4 |
| | | |||||
| * | Introduce a WindowProxy for accessing a subset of functionality | Glenn Watson | 2014-12-17 | 8 | -52/+171 |
| | | | | | | | | | | | | | | from other threads. This currently provides a way for other threads to wakeup a blocked event loop on X11. Other platforms have stub functions that need to be implemented. This is similar to the functionality of glfwPostEmptyEvent. | ||||
* | | Merge pull request #164 from glennw/scroll-wheel | tomaka | 2014-12-18 | 1 | -2/+2 |
|\ \ | | | | | | | Add scroll wheel events for mac. | ||||
| * | | Add scroll wheel events for mac. | Glenn Watson | 2014-12-18 | 1 | -2/+2 |
| |/ | |||||
* / | Update for rustc for x11 | Pierre Krieger | 2014-12-17 | 1 | -8/+8 |
|/ | |||||
* | Update for Rustc for win32 | Pierre Krieger | 2014-12-15 | 1 | -1/+1 |
| | |||||
* | Update for Rustc | Pierre Krieger | 2014-12-13 | 2 | -4/+5 |
| | |||||
* | Avoid warning; if_let and tuple_indexing now part of language. | Jakob Fries | 2014-12-08 | 1 | -2/+0 |
| | |||||
* | Add get_api() function | Pierre Krieger | 2014-12-07 | 6 | -0/+52 |
| | |||||
* | Merge pull request #156 from tomaka/remove-compile-msg | tomaka | 2014-12-05 | 1 | -4/+3 |
|\ | | | | | Remove the dependency to compile_msg | ||||
| * | Remove the dependency to compile_msg | Pierre Krieger | 2014-12-04 | 1 | -4/+3 |
| | | |||||
* | | Merge pull request #157 from ozkriff/master | tomaka | 2014-12-04 | 1 | -3/+3 |
|\ \ | | | | | | | android: updated for rust 5484d6f6d 2014-12-02 00:22:00 +0000 | ||||
| * | | android: updated for rust 5484d6f6d 2014-12-02 00:22:00 +0000 | Andrey Lesnikov | 2014-12-05 | 1 | -3/+3 |
| |/ | |||||
* / | Qualify enum namespacing for NSOpenGLCPSwapInterval | Ruben Bakker | 2014-12-03 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #150 from tomaka/winapi | tomaka | 2014-12-03 | 7 | -1078/+343 |
|\ | | | | | Use the winapi crate instead of our own ffi | ||||
| * | Use the winapi crate instead of our own ffi | Pierre Krieger | 2014-12-02 | 7 | -1078/+343 |
| | | |||||
* | | Merge pull request #154 from tomaka/fix-warning-x11 | tomaka | 2014-12-02 | 1 | -2/+2 |
|\ \ | | | | | | | Fix deprecation warning on X11 | ||||
| * | | Fix deprecation warning on X11 | Pierre Krieger | 2014-12-02 | 1 | -2/+2 |
| |/ | |||||
* / | Fix multisampling not working on X11 | Pierre Krieger | 2014-12-02 | 1 | -1/+2 |
|/ | |||||
* | Fixed issue with menu bar showing in fullscreen | David Partouche | 2014-11-28 | 1 | -1/+3 |
| | |||||
* | Update for rustc on win32 | Pierre Krieger | 2014-11-27 | 1 | -21/+30 |
| | |||||
* | Implement multisampling for x11 | Pierre Krieger | 2014-11-27 | 4 | -6/+28 |
| | |||||
* | Merge pull request #138 from DavidPartouche/cocoa_offscreen | tomaka | 2014-11-27 | 2 | -19/+115 |
|\ | | | | | Added headless rendering on osx | ||||
| * | Added headless rendering on osx | David Partouche | 2014-11-25 | 2 | -19/+115 |
| | | |||||
* | | Merge pull request #142 from DavidPartouche/cocoa_vsync | tomaka | 2014-11-27 | 1 | -4/+9 |
|\ \ | | | | | | | Added swap interval to osx | ||||
| * | | Added swap interval to osx | David Partouche | 2014-11-26 | 1 | -4/+9 |
| | | | |||||
* | | | Update for rustc | Pierre Krieger | 2014-11-26 | 2 | -3/+1 |
| | | | |||||
* | | | android: Updated for rust 395901393 2014-11-24 00:46:30 +0000 | Andrey Lesnikov | 2014-11-26 | 1 | -5/+5 |
|/ / | |||||
* / | Add support for GLESv2 on android. Remove a few warnings. | Glenn Watson | 2014-11-26 | 2 | -12/+25 |
|/ | |||||
* | Allows android to compile when headless feature is enabled. | Glenn Watson | 2014-11-26 | 1 | -3/+27 |
| |