aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* RustupPierre Krieger2015-03-255-18/+15
|
* Merge pull request #324 from binsoftware/win32-monitortomaka2015-03-252-36/+77
|\ | | | | Win32 monitor handling
| * enumerate monitors in addition to adapters; this allows the MonitorID ↵Ryan Stewart2015-03-242-34/+70
| | | | | | | | implementation to return a more useful monitor name, and the correct native monitor ID
| * honor top-left coordinates when requesting fullscreen to make sure window ↵Ryan Stewart2015-03-241-2/+7
| | | | | | | | appears on the correct monitor
* | Fix compilation by replacing "range" with ".." syntaxCam Jackson2015-03-251-1/+1
|/
* Merge pull request #316 from binsoftware/cocoa-fixesBrendan Zabarauskas2015-03-247-72/+204
|\ | | | | Cocoa fixes: memory leaks, monitor handling, is_current()
| * add and use IdRef::non_nil() instead of doing deref'd comparisons against nilRyan Stewart2015-03-181-27/+24
| |
| * fix headless build by ensuring NativeMonitorId enum is available internally ↵Ryan Stewart2015-03-187-29/+36
| | | | | | | | even without the window feature; add Eq/PartialEq to NativeMonitorId
| * fix X11 build issue due to missing importRyan Stewart2015-03-161-0/+1
| |
| * implement Window is_current() for cocoa backendRyan Stewart2015-03-161-1/+9
| |
| * honor the passed-in MonitorID when using with_fullscreen() in cocoa backendRyan Stewart2015-03-161-8/+35
| |
| * expose platform-native monitor identifierRyan Stewart2015-03-166-1/+43
| |
| * handle retain/release on cocoa objectsRyan Stewart2015-03-161-42/+92
| |
* | Upgrade to latest RustSven Nilsen2015-03-231-1/+1
| |
* | Merge pull request #318 from glennw/thread-wake-mactomaka2015-03-231-1/+3
|\ \ | | | | | | Fix waking up mac event loop from thread.
| * | Fix waking up mac event loop from thread.Glenn Watson2015-03-201-1/+3
| | |
* | | Fix compilation by replacing "range" with ".." syntaxNicholas Bishop2015-03-222-2/+2
| | |
* | | RustupPierre Krieger2015-03-213-5/+12
|/ /
* / Update for latest RustYork Xiang2015-03-191-1/+0
|/
* Redirect size_hint method to the underlying iteratorsPierre Krieger2015-03-161-0/+15
|
* Pull all dependencies from crates.ioPierre Krieger2015-03-131-1/+1
|
* Add set_cursor_position functionPierre Krieger2015-03-105-0/+36
|
* Fix scrolling wheel behavior on OSXnwin2015-03-051-1/+1
| | | Fix regression introduced by #95b1c96 for the fix in #25fa4df
* Add is_current functionPierre Krieger2015-03-049-0/+47
|
* Fix docJan Niklas Hasse2015-03-021-0/+1
|
* Minor changes in documentationPierre Krieger2015-03-011-14/+12
|
* Add a guard for the calls to MakeCurrent during initializationPierre Krieger2015-03-013-16/+61
|
* Add wrappers for safer error recovery during initializationPierre Krieger2015-03-012-82/+87
|
* Fix various warningsPierre Krieger2015-03-012-5/+5
|
* Mark functions as unsafe instead of having a lot of blocksPierre Krieger2015-03-011-85/+84
|
* Merge pull request #298 from andreasgal/mastertomaka2015-03-011-6/+2
|\ | | | | Make headless rendering work on Mac OS X 10.10
| * simplify pixel format requirements for cocoa offscreen renderingAndreas Gal2015-02-231-6/+2
| |
* | Allow using non-hardware-accelerated pixel formatsPierre Krieger2015-03-011-7/+8
| |
* | Fix creating non-hardware-accelerated contextsPierre Krieger2015-03-012-6/+8
| |
* | Use the WGL API to determine extended pixel format, plus fix creationPierre Krieger2015-03-012-35/+34
| |
* | Implement set_cursor for osxBryan Bell2015-02-271-1/+33
|/
* Do not call wglShareLists is ctxt is nulltomaka2015-02-231-1/+1
|
* Fix win32 compilationtomaka2015-02-231-1/+1
|
* android: Updated to latest android-rs-glueAndrey Lesnikov2015-02-221-5/+6
|
* Merge pull request #290 from frewsxcv/cleanuptomaka2015-02-222-11/+10
|\ | | | | Various cleanup commits
| * Stop using deprecated CString::from_slice constructorCorey Farwell2015-02-211-6/+6
| |
| * Remove deprecated 'allow' lintCorey Farwell2015-02-211-1/+0
| |
| * Opt into features to silence warningsCorey Farwell2015-02-211-1/+1
| |
| * Deref before matchingCorey Farwell2015-02-211-3/+3
| | | | | | | | rust-guidelines encourages this
* | Fix MouseMoved by checking for NSDrag events as well, closes #288mitchmindtree2015-02-221-1/+4
|/
* Removed as_slice_with_nul as CString now derefs to a CStrmitchmindtree2015-02-225-5/+5
|
* RingBuf -> VecDeque for other platforms, as_slice_with_nul -> as_bytes_with_nulmitchmindtree2015-02-227-18/+18
|
* Fixed errors on latest nightly, RingBuf -> VecDequemitchmindtree2015-02-213-12/+12
|
* expose the platform-specific window handle (currently Win only)Ryan Stewart2015-02-205-0/+24
|
* Merge pull request #282 from tomaka/gl-apitomaka2015-02-197-29/+101
|\ | | | | Improve the OpenGL context request system