aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #202 from tomaka/osx-fix-attempttomaka2015-01-153-25/+25
|\ \ | | | | | | Blind attempt to fix the OS/X build
| * | Blind attempt to fix the OS/X buildPierre Krieger2015-01-153-25/+25
|/ /
* | Merge pull request #200 from ozkriff/mastertomaka2015-01-151-0/+1
|\ \ | | | | | | android: Fixed depth buffer
| * | android: Fixed depth bufferAndrey Lesnikov2015-01-151-0/+1
|/ /
* | Merge pull request #197 from ozkriff/mastertomaka2015-01-1310-90/+91
|\ \ | | | | | | x11, android, win: [ui]size -> [ui]32
| * | x11, android, win32: [ui]size, [u]int -> [ui]32Andrey Lesnikov2015-01-1310-90/+91
| | |
* | | Merge pull request #196 from ozkriff/mastertomaka2015-01-131-1/+1
|\| | | | | | | | Fixed android: Added 'MouseCursor' import
| * | Fixed android: Added 'MouseCursor' importAndrey Lesnikov2015-01-131-1/+1
|/ /
* | Merge pull request #192 from bjwbell/mouse-cursorstomaka2015-01-138-4/+179
|\ \ | | | | | | Add mouse cursor support
| * | Code review commentsBryan Bell2015-01-132-1/+2
| | | | | | | | | | | | | | | - Revert version back to 0.0.4 - Add comment that set_cursor has no effect on Android
| * | Fix OS X & Win32 buildsBryan Bell2015-01-122-2/+2
| | |
| * | Refine X11 cursor selectionsBryan Bell2015-01-121-19/+22
| | | | | | | | | | | | | | | | | | | | | For MouseCursor::Cell, NotAllowed, NoDrop, Grab, Grabbing, ... set the appropriate X11 cursor. Also alphabetize the cursors listed in the MouseCursor enum.
| * | Add mouse cursor supportBryan Bell2015-01-129-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-badgetomaka2015-01-131-0/+1
|\ \ \ | | | | | | | | Add appveyor build status in README
| * | | Add appveyor build status in READMEPierre Krieger2015-01-131-0/+1
|/ / /
* | | Merge pull request #193 from bjwbell/int-and-uint-to-u-and-isizetomaka2015-01-134-35/+35
|\ \ \ | |/ / |/| | Change uint/int to usize/isize
| * | Change uint/int to usize/isizeBryan Bell2015-01-124-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-alphatomaka2015-01-123-16/+26
|\ \ | | | | | | OSX compatibility for Rust 1.0 alpha
| * | Revert arch_64 feature flag for rust-cocoaSam Ward2015-01-111-1/+0
| | |
| * | OSX compatibility for Rust 1.0 alphaSam Ward2015-01-103-16/+27
| | |
* | | Bump version numberPierre Krieger2015-01-101-2/+2
|/ /
* | Merge pull request #190 from tomaka/update-rustctomaka2015-01-108-14/+11
|\ \ | | | | | | Update for rust alpha 1.0
| * | Update for rust alpha 1.0Pierre Krieger2015-01-108-14/+11
|/ /
* | Merge pull request #189 from ozkriff/mastertomaka2015-01-081-5/+3
|\ \ | | | | | | android: Updated for Rust ea6f65c5f 2015-01-06
| * | android: Updated for Rust ea6f65c5f 2015-01-06Andrey Lesnikov2015-01-081-5/+3
|/ /
* | Merge pull request #187 from tomaka/update-rustctomaka2015-01-0810-58/+52
|\ \ | | | | | | Update for Rustc
| * \ Merge remote-tracking branch 'cybergeek94/master' into update-rustcPierre Krieger2015-01-083-27/+34
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/support/mod.rs src/lib.rs tests/headless.rs
| | * | Update to latest Rust nightlyAustin Bonander2015-01-085-37/+41
| |/ / |/| |
| * | Update for RustcPierre Krieger2015-01-088-31/+18
|/ /
* | Merge pull request #186 from tomaka/update-rustctomaka2015-01-054-8/+8
|\ \ | | | | | | Update for Rustc
| * | Update for RustcPierre Krieger2015-01-054-8/+8
|/ /
* | Merge pull request #184 from mikedilger/upstream_fallouttomaka2015-01-051-3/+7
|\ \ | | | | | | fix for Iterator now using associated types
| * | fix for Iterator now using associated typesMike Dilger2015-01-051-3/+7
|/ /
* | Merge pull request #183 from ozkriff/mastertomaka2015-01-041-2/+3
|\ \ | | | | | | android: Updated for rust fc2ba1393 2015-01-03
| * | android: Updated for rust fc2ba1393 2015-01-03Andrey Lesnikov2015-01-041-2/+3
|/ /
* | Merge pull request #181 from tomaka/update-rustctomaka2015-01-0312-27/+32
|\ \ | | | | | | Update for Rustc
| * | Update for RustcPierre Krieger2015-01-0312-27/+32
|/ /
* | Merge pull request #180 from TyOverby/event-changetomaka2015-01-028-65/+77
|\ \ | | | | | | Change the way that event iterators are represented.
| * | Change the way that events are represented.Ty Overby2015-01-018-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 removedPierre Krieger2014-12-311-0/+15
| |
* | Merge pull request #173 from tomaka/change-builder-attribstomaka2014-12-318-61/+131
|\ \ | | | | | | Finalize window building API
| * | Add missing `with_*` functionsPierre Krieger2014-12-311-0/+35
| | |
| * | Add `build_strict` function on buildersPierre Krieger2014-12-311-0/+20
| | |
| * | Unify WindowBuilder and HeadlessRendererBuilder for easier implementationsPierre Krieger2014-12-318-61/+76
|/ /
* | Bump version numberPierre Krieger2014-12-301-16/+1
| |
* | Merge pull request #179 from tomaka/use-cratesiotomaka2014-12-301-3/+3
|\ \ | | | | | | Use gl_common and gl_generator from crates.io
| * | Use gl_common and gl_generator from crates.ioPierre Krieger2014-12-301-3/+3
| | |
* | | Merge pull request #178 from tomaka/update-rustctomaka2014-12-308-4/+41
|\| | | |/ |/| Update for changes in Send/Sync traits
| * Update for changes in Send/Sync traitsPierre Krieger2014-12-308-4/+41
|/
* Merge pull request #174 from tomaka/travis-docs-headlesstomaka2014-12-281-1/+1
|\ | | | | Generate docs for headless functionnalities too