aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove obsolete notice in READMETomaka172014-11-111-1/+0
|
* Merge pull request #111 from glennw/android-buildtomaka2014-11-111-0/+3
|\ | | | | Add gl_common dependency to fix android build.
| * Add gl_common dependency to fix android build.Glenn Watson2014-11-111-0/+3
|/
* Merge pull request #107 from bjz/set_titleDavid Partouche2014-11-102-2/+8
|\ | | | | Implement Window::set_title for Cocoa
| * Implement Window::set_title for CocoaBrendan Zabarauskas2014-11-102-2/+8
| |
* | Update apk-builderTomaka172014-11-101-0/+0
| |
* | Merge pull request #108 from tomaka/fix-appveyortomaka2014-11-101-4/+4
|\ \ | |/ |/| Fix the appveyor build
| * Fix the appveyor buildTomaka172014-11-101-4/+4
|/
* Remove call to glViewport in X11 implementationPierre Krieger2014-11-091-13/+0
|
* Merge pull request #104 from tomaka/debug-flagtomaka2014-11-094-6/+39
|\ | | | | Add support for the OpenGL debug flag
| * Add support for the OpenGL debug flagTomaka172014-11-094-6/+39
|/
* Fix nightlies URLsTomaka172014-11-091-2/+2
|
* Appveyor now showing rust and cargo versionsTomaka172014-11-091-0/+2
|
* Add CS_OWNDC flag when creating win32 windowTomaka172014-11-081-1/+1
|
* Merge pull request #92 from tomaka/remove-modifierstomaka2014-11-065-75/+12
|\ | | | | Remove key modifiers in KeyboardInput
| * Remove key modifiers in KeyboardInputTomaka172014-11-065-75/+12
|/
* Merge pull request #102 from tomaka/keys-reworktomaka2014-11-061-65/+93
|\ | | | | Reorder and add comments to some of the virtual keys
| * Reorder and add comments to some of the virtual keysTomaka172014-11-061-65/+93
| |
* | Merge pull request #103 from DavidPartouche/cocoa_fullscreentomaka2014-11-062-17/+24
|\ \ | |/ |/| Added fullscreen support to osx
| * Added fullscreen support to osxDavid Partouche2014-11-062-17/+24
|/
* Merge pull request #100 from tomaka/correct-creation-errortomaka2014-11-057-60/+76
|\ | | | | Use a proper error type for window creation
| * Use a proper error type for window creationTomaka172014-11-057-60/+76
| |
* | Merge pull request #99 from tomaka/update-glrstomaka2014-11-054-40/+62
|\| | | | | Update for changes in gl-rs
| * Update for changes in gl-rsTomaka172014-11-054-40/+62
|/
* Merge branch 'master' of http://github.com/tomaka/gl-init-rsTomaka172014-11-058-26/+123
|\
| * Merge pull request #97 from DavidPartouche/cocoa_monitorstomaka2014-11-054-22/+59
| |\ | | | | | | Retrieve the monitors and their info for osx
| | * Switched to own repos for osx bindingsDavid Partouche2014-11-051-4/+4
| | |
| | * Retrieve the monitors and their info for osxDavid Partouche2014-11-044-20/+57
| |/
| * Merge pull request #93 from tomaka/visibilitytomaka2014-11-016-4/+64
| |\ | | | | | | Add visibility-related functions to window
| | * Add visibility-related functions to windowTomaka172014-11-016-4/+64
| |/
* / Fix some warnings in win32 ffiTomaka172014-11-041-2/+2
|/
* Update travis.yml with recent PRTomaka172014-10-311-1/+1
|
* Merge pull request #90 from tomaka/remove-glflushtomaka2014-10-314-6/+5
|\ | | | | Remove call to glFlush() before swap_buffers on win32
| * Remove call to glFlush() before swap_buffersTomaka172014-10-294-6/+5
| | | | | | | | | | | | We may not want to call `swap_buffers` in the same thread as the current thread, so we're moving the call to `glFlush` out of the scope of glutin.
* | android_glue is now a platform-specific dependencyTomaka172014-10-311-3/+3
| |
* | Merge pull request #58 from tomaka/update-cargotomaka2014-10-311-4/+9
|\ \ | | | | | | Update for Cargo's platform-specific dependencies
| * | Update for Cargo's platform-specific dependenciesTomaka172014-10-211-4/+9
| | |
* | | Merge pull request #91 from tomaka/fail-to-panictomaka2014-10-303-4/+4
|\ \ \ | | | | | | | | fail! -> panic!
| * | | fail! -> panic!Tomaka172014-10-303-4/+4
|/ / /
* | / Update README.mdtomaka2014-10-291-2/+1
| |/ |/|
* | Update README.mdtomaka2014-10-281-4/+6
| |
* | Merge pull request #86 from glennw/x11-resizetomaka2014-10-282-4/+30
|\ \ | | | | | | 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 Watson2014-10-282-4/+30
| | | | | | | | | | | | initial size doesn't work.
* | | Merge pull request #85 from glennw/c-str-issuestomaka2014-10-281-4/+6
|\ \ \ | |/ / |/| | Fix a few more string memory issues.
| * | Fix a few more string memory issues.Glenn Watson2014-10-281-4/+6
|/ /
* | Fix default window nameTomaka172014-10-271-1/+1
| |
* | Bugfix in swap interval for win32Tomaka172014-10-271-1/+10
| |
* | Merge pull request #72 from tomaka/vsynctomaka2014-10-274-5/+26
|\ \ | | | | | | Add `with_vsync` to WindowBuilder, plus the win32 implementation
| * | Add `with_vsync` to WindowBuilder, plus the win32 implementationTomaka172014-10-264-5/+26
| | |
* | | Merge pull request #74 from glennw/x11-key-eventstomaka2014-10-271-6/+6
|\ \ \ | | | | | | | | Add backspace event and map some more keys on x11.