Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Merge pull request #161 from glennw/thread-proxy | tomaka | 2014-12-18 | 1 | -51/+92 | |
|\ | | | | | Introduce a WindowProxy for accessing a subset of functionality | |||||
| * | Fix event name | Glenn Watson | 2014-12-18 | 1 | -2/+2 | |
| | | ||||||
| * | Introduce a WindowProxy for accessing a subset of functionality | Glenn Watson | 2014-12-17 | 1 | -51/+92 | |
| | | | | | | | | | | | | | | 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. | |||||
* | | Update for rustc for x11 | Pierre Krieger | 2014-12-17 | 1 | -8/+8 | |
|/ | ||||||
* | Add get_api() function | Pierre Krieger | 2014-12-07 | 1 | -0/+5 | |
| | ||||||
* | 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 | |
|/ | ||||||
* | Implement multisampling for x11 | Pierre Krieger | 2014-11-27 | 1 | -2/+9 | |
| | ||||||
* | Update for rustc | Pierre Krieger | 2014-11-26 | 1 | -1/+1 | |
| | ||||||
* | Implement lists sharing | Pierre Krieger | 2014-11-24 | 1 | -2/+8 | |
| | ||||||
* | Update for rustc | Pierre Krieger | 2014-11-19 | 2 | -1000/+1004 | |
| | ||||||
* | Add support for with_visibility(), show(), hide() on X11. | Glenn Watson | 2014-11-18 | 1 | -1/+16 | |
| | ||||||
* | Add ctrl, shift, alt events for X11. | Glenn Watson | 2014-11-17 | 1 | -6/+6 | |
| | ||||||
* | Remove call to glViewport in X11 implementation | Pierre Krieger | 2014-11-09 | 1 | -13/+0 | |
| | ||||||
* | Add support for the OpenGL debug flag | Tomaka17 | 2014-11-09 | 1 | -0/+5 | |
| | ||||||
* | Remove key modifiers in KeyboardInput | Tomaka17 | 2014-11-06 | 1 | -31/+2 | |
| | ||||||
* | Use a proper error type for window creation | Tomaka17 | 2014-11-05 | 1 | -10/+11 | |
| | ||||||
* | Add visibility-related functions to window | Tomaka17 | 2014-11-01 | 1 | -0/+6 | |
| | ||||||
* | fail! -> panic! | Tomaka17 | 2014-10-30 | 2 | -3/+3 | |
| | ||||||
* | Merge pull request #86 from glennw/x11-resize | tomaka | 2014-10-28 | 1 | -4/+13 | |
|\ | | | | | Fix resize event on X11. Without this change, resizing window larger tha... | |||||
| * | Fix resize event on X11. Without this change, resizing window larger than ↵ | Glenn Watson | 2014-10-28 | 1 | -4/+13 | |
| | | | | | | | | initial size doesn't work. | |||||
* | | Fix a few more string memory issues. | Glenn Watson | 2014-10-28 | 1 | -4/+6 | |
|/ | ||||||
* | Merge pull request #74 from glennw/x11-key-events | tomaka | 2014-10-27 | 1 | -6/+6 | |
|\ | | | | | Add backspace event and map some more keys on x11. | |||||
| * | Add backspace event and map some more keys on x11. | Glenn Watson | 2014-10-27 | 1 | -6/+6 | |
| | | ||||||
* | | Merge pull request #76 from glennw/fix-x11-window-res | tomaka | 2014-10-27 | 1 | -1/+1 | |
|\ \ | | | | | | | Only reject modes based on resolution when using fullscreen. This fixes ... | |||||
| * | | Only reject modes based on resolution when using fullscreen. This fixes ↵ | Glenn Watson | 2014-10-27 | 1 | -1/+1 | |
| |/ | | | | | | | creating a window that is not the same resolution as an existing video mode. | |||||
* | | Merge pull request #78 from glennw/x11-wheel-events | tomaka | 2014-10-27 | 1 | -4/+10 | |
|\ \ | | | | | | | Add support for mouse wheel events on x11. | |||||
| * | | Add support for mouse wheel events on x11. | Glenn Watson | 2014-10-27 | 1 | -4/+10 | |
| |/ | ||||||
* | | Merge pull request #77 from glennw/x11-modifiers | tomaka | 2014-10-27 | 1 | -3/+31 | |
|\ \ | | | | | | | Add support for keyboard modifiers on x11. | |||||
| * | | Add support for keyboard modifiers on x11. | Glenn Watson | 2014-10-27 | 1 | -3/+31 | |
| |/ | ||||||
* / | Fix bad memory being passed (due to going out of scope) to set title on X11. | Glenn Watson | 2014-10-27 | 1 | -3/+5 | |
|/ | ||||||
* | Merge pull request #65 from glennw/x-threads | tomaka | 2014-10-24 | 2 | -0/+15 | |
|\ | | | | | 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 | 2 | -0/+15 | |
| | | | | | | | | | | | | windowing system. This allows setting up Linux based systems which use multithreaded OpenGL contexts. | |||||
* | | Merge pull request #66 from glennw/platform_data | tomaka | 2014-10-24 | 1 | -0/+4 | |
|\ \ | | | | | | | Add accessor for underlying display handle on Linux. | |||||
| * | | Add accessor for underlying display handle on Linux. Although unimplemented ↵ | Glenn Watson | 2014-10-24 | 1 | -0/+4 | |
| |/ | | | | | | | on other platforms, this applies to at least android as well. | |||||
* / | Fix closing X display in get_dimensions | Glenn Watson | 2014-10-24 | 1 | -0/+1 | |
|/ | ||||||
* | Update for rustc and gl-rs | Tomaka17 | 2014-10-22 | 1 | -3/+3 | |
| | ||||||
* | Use gl-rs's GLX bindings for x11 | Pierre Krieger | 2014-10-13 | 1 | -33/+23 | |
| | ||||||
* | Update for rustc f9fc49c06 2014-10-10 00:07:08 +0000 | Tomaka17 | 2014-10-10 | 1 | -1/+1 | |
| | ||||||
* | Implement headless rendering | Tomaka17 | 2014-10-09 | 3 | -0/+1556 | |