aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #170 from tomaka/update-rustctomaka2014-12-233-14/+20
|\ | | | | Update for rustc
| * Update for rustcPierre Krieger2014-12-233-14/+20
| |
* | Merge pull request #169 from glennw/mac-vistomaka2014-12-231-1/+1
|\ \ | |/ |/| Fix passing visibility through for mac.
| * Fix passing visibility through for mac.Glenn Watson2014-12-231-1/+1
|/
* Merge pull request #167 from tomaka/fix-appveyortomaka2014-12-201-1/+1
|\ | | | | Fix appveyor build
| * Fix appveyor buildPierre Krieger2014-12-201-1/+1
|/
* Fix win32 build without the "window" featurePierre Krieger2014-12-201-1/+0
|
* Merge pull request #166 from Cifram/mastertomaka2014-12-204-4/+4
|\ | | | | Add semicolons after macro invocations, as required by the latest nightly.
| * Add semicolons after macro invocations, as required by the latest nightly.Michael Powell2014-12-194-4/+4
|/
* Merge pull request #165 from glennw/mac-visibletomaka2014-12-191-3/+7
|\ | | | | Add support for visible parameter on mac.
| * Add support for visible parameter on mac.Glenn Watson2014-12-191-3/+7
|/
* Merge pull request #160 from glennw/mac-resizetomaka2014-12-187-35/+111
|\ | | | | Add callback function to allow resize messages to be sent on mac.
| * Add experimental attribute since this API will need to be cleaned up.Glenn Watson2014-12-191-0/+2
| |
| * Add resize example, fix warnings, make callback an option so it can be removed.Glenn Watson2014-12-197-22/+26
| |
| * Add callback function to allow resize messages to be sent on mac.Glenn Watson2014-12-196-32/+102
|/
* Merge pull request #161 from glennw/thread-proxytomaka2014-12-188-52/+187
|\ | | | | Introduce a WindowProxy for accessing a subset of functionality
| * Change todo to unimplementedGlenn Watson2014-12-192-2/+2
| |
| * Add mac implementation of wakeup_event_loop.Glenn Watson2014-12-181-1/+17
| |
| * Fix event nameGlenn Watson2014-12-182-4/+4
| |
| * Introduce a WindowProxy for accessing a subset of functionalityGlenn Watson2014-12-178-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-wheeltomaka2014-12-181-2/+2
|\ \ | | | | | | Add scroll wheel events for mac.
| * | Add scroll wheel events for mac.Glenn Watson2014-12-181-2/+2
| |/
* | Add links to documentationPierre Krieger2014-12-172-0/+3
| |
* | Fix travis secure tokenPierre Krieger2014-12-171-1/+1
| |
* | Add automatic gh-pages deployment in travisPierre Krieger2014-12-171-0/+13
| |
* | Merge pull request #163 from tomaka/update-rustctomaka2014-12-171-8/+8
|\ \ | | | | | | Update for rustc for x11
| * | Update for rustc for x11Pierre Krieger2014-12-171-8/+8
|/ /
* | Merge pull request #162 from tomaka/winapi-loctomaka2014-12-171-2/+2
|\ \ | |/ |/| Use "winapi" from crates.io
| * Use "winapi" from crates.ioPierre Krieger2014-12-171-2/+2
|/
* Update for Rustc for win32Pierre Krieger2014-12-152-4/+4
|
* Merge pull request #159 from tomaka/update-rustctomaka2014-12-142-4/+5
|\ | | | | Update for Rustc for win32
| * Update for RustcPierre Krieger2014-12-132-4/+5
|/
* Merge pull request #158 from serpis/fix_warningtomaka2014-12-085-6/+0
|\ | | | | Avoid warning; if_let and tuple_indexing now part of language.
| * Avoid warning; if_let and tuple_indexing now part of language.Jakob Fries2014-12-085-6/+0
|/
* Merge pull request #121 from tomaka/get-apitomaka2014-12-076-0/+52
|\ | | | | Add get_api() function
| * Add get_api() functionPierre Krieger2014-12-076-0/+52
|/
* Merge pull request #156 from tomaka/remove-compile-msgtomaka2014-12-052-7/+3
|\ | | | | Remove the dependency to compile_msg
| * Remove the dependency to compile_msgPierre Krieger2014-12-042-7/+3
| |
* | Merge pull request #157 from ozkriff/mastertomaka2014-12-041-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 +0000Andrey Lesnikov2014-12-051-3/+3
| | |
* | | Merge pull request #155 from AnthIste/osx-enum-fixtomaka2014-12-041-1/+1
|\ \ \ | |_|/ |/| | OSX: Qualify enum namespacing for NSOpenGLCPSwapInterval
| * | Qualify enum namespacing for NSOpenGLCPSwapIntervalRuben Bakker2014-12-031-1/+1
| |/
* / Remove obsolete README message about win32tomaka2014-12-041-1/+0
|/
* Merge pull request #150 from tomaka/winapitomaka2014-12-038-1078/+351
|\ | | | | Use the winapi crate instead of our own ffi
| * Use the winapi crate instead of our own ffiPierre Krieger2014-12-028-1078/+351
| |
* | Merge pull request #154 from tomaka/fix-warning-x11tomaka2014-12-021-2/+2
|\ \ | | | | | | Fix deprecation warning on X11
| * | Fix deprecation warning on X11Pierre Krieger2014-12-021-2/+2
| |/
* | Merge pull request #153 from tomaka/fix-multisampling-x11tomaka2014-12-021-1/+2
|\ \ | |/ |/| Fix multisampling not working on X11
| * Fix multisampling not working on X11Pierre Krieger2014-12-021-1/+2
|/
* Merge pull request #149 from DavidPartouche/fix_cocoa_fullscreenBrendan Zabarauskas2014-11-291-1/+3
|\ | | | | Fixed issue with menu bar showing in fullscreen