aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cursor.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fixes cursor behavior with windowsRengierof2015-12-261-3/+3
|
* unwrap to fix unused result warningmitchmindtree2015-11-081-2/+2
|
* Fix the examplesPierre Krieger2015-10-041-6/+1
|
* Use modern GL code for the examplesPierre Krieger2015-08-051-1/+1
|
* Remove the is_closed functionPierre Krieger2015-06-161-18/+15
|
* Make legacy functions crash on osx core contextsFelix Kaaman2015-06-161-1/+1
|
* Express scroll deltas as either line or pixel deltasRobert Knight2015-06-131-1/+1
| | | | | | | | | | | | Depending on the platform and device, scroll deltas may either be represented as pixel deltas specifying the amount in pixels to scroll or they may be expressed in 'lines' or 'chunks' for low resolution devices (eg. a traditional mouse wheel). Pixel deltas are currently available on OS X. X11 currently supports only integer line deltas, though pixel deltas are available via XInput2. Windows supports fractional line deltas.
* Removed unused features from build and examples.Steven Sheldon2015-04-031-2/+0
|
* RustupPierre Krieger2015-03-251-0/+2
|
* Add mouse cursor supportBryan Bell2015-01-121-0/+49
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.