Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add `platform_display` impls for win32 and android | Tomaka17 | 2014-10-24 | 3 | -2/+5 | |
| | | | | Fix the cocoa function | |||||
* | Merge pull request #65 from glennw/x-threads | tomaka | 2014-10-24 | 4 | -0/+18 | |
|\ | | | | | Add an interface for providing system wide initialization options to the windowing system. | |||||
| * | Add an interface for providing system wide initialization options to the ↵ | Glenn Watson | 2014-10-24 | 4 | -0/+18 | |
| | | | | | | | | | | | | windowing system. This allows setting up Linux based systems which use multithreaded OpenGL contexts. | |||||
* | | Merge pull request #66 from glennw/platform_data | tomaka | 2014-10-24 | 5 | -0/+24 | |
|\ \ | | | | | | | Add accessor for underlying display handle on Linux. | |||||
| * | | Make platform data function as unsafe. | Glenn Watson | 2014-10-24 | 1 | -1/+1 | |
| | | | ||||||
| * | | Add accessor for underlying display handle on Linux. Although unimplemented ↵ | Glenn Watson | 2014-10-24 | 5 | -0/+24 | |
| |/ | | | | | | | on other platforms, this applies to at least android as well. | |||||
* / | Fix closing X display in get_dimensions | Glenn Watson | 2014-10-24 | 1 | -0/+1 | |
|/ | ||||||
* | Added the Alt key modifier | David Partouche | 2014-10-23 | 2 | -0/+8 | |
| | ||||||
* | Added the modifiers key as input | David Partouche | 2014-10-23 | 1 | -3/+38 | |
| | ||||||
* | Fixed switch from atomics to atomic in rust | David Partouche | 2014-10-23 | 1 | -2/+2 | |
| | ||||||
* | Added the KeyPress and KeyRelease events | David Partouche | 2014-10-23 | 3 | -11/+180 | |
| | ||||||
* | Added ReceivedCharacter event for cocoa | David Partouche | 2014-10-23 | 1 | -2/+10 | |
| | ||||||
* | Added is_closed to osx window | David Partouche | 2014-10-23 | 1 | -2/+9 | |
| | ||||||
* | Added mose move event | David Partouche | 2014-10-23 | 1 | -4/+11 | |
| | ||||||
* | Fixed a compilation error: setContentview changed setContentView_ | David Partouche | 2014-10-23 | 1 | -1/+1 | |
| | ||||||
* | Update for rustc and gl-rs | Tomaka17 | 2014-10-22 | 6 | -31/+31 | |
| | ||||||
* | Update for gl-rs | Tomaka17 | 2014-10-21 | 3 | -5/+36 | |
| | ||||||
* | Use gl-rs's GLX bindings for x11 | Pierre Krieger | 2014-10-13 | 2 | -75/+34 | |
| | ||||||
* | Fix win32 window not closing when destroying it | Tomaka17 | 2014-10-11 | 2 | -0/+4 | |
| | ||||||
* | Fix win32 window not having a destructor in headless mode | Tomaka17 | 2014-10-11 | 1 | -1/+0 | |
| | ||||||
* | Fix bug with 64bits rustc | Tomaka17 | 2014-10-11 | 1 | -1/+1 | |
| | ||||||
* | Fix warnings while compiling for win32 | Tomaka17 | 2014-10-11 | 2 | -5/+7 | |
| | ||||||
* | Changed statics to uppercase | David Partouche | 2014-10-11 | 1 | -10/+8 | |
| | ||||||
* | Fixed static uppercase warning | David Partouche | 2014-10-11 | 1 | -2/+4 | |
| | ||||||
* | Change implementations import system | Tomaka17 | 2014-10-11 | 1 | -13/+8 | |
| | ||||||
* | Update for rustc f9fc49c06 2014-10-10 00:07:08 +0000 | Tomaka17 | 2014-10-10 | 5 | -1567/+1569 | |
| | ||||||
* | Implement headless rendering | Tomaka17 | 2014-10-09 | 10 | -516/+755 | |
| | ||||||
* | Fixed a space missing | DavidPartouche | 2014-10-06 | 1 | -1/+1 | |
| | ||||||
* | Added events handling for left/right mouse clicking | David Partouche | 2014-10-06 | 1 | -7/+32 | |
| | ||||||
* | Refactored window initialisation code for cocoa, making it more memory safe | David Partouche | 2014-10-06 | 1 | -29/+77 | |
| | ||||||
* | Cocoa opens a window with OpenGL context inside | David Partouche | 2014-10-06 | 2 | -12/+99 | |
| | ||||||
* | Fix warnings | Pierre Krieger | 2014-10-05 | 2 | -1/+2 | |
| | ||||||
* | Fix compilation warnings | Tomaka17 | 2014-09-23 | 4 | -10/+10 | |
| | ||||||
* | Use the correct monitor when fullscreen for X11 | DavidPartouche | 2014-09-20 | 2 | -3/+4 | |
| | ||||||
* | Added output to get_name for x11 monitors | DavidPartouche | 2014-09-19 | 1 | -1/+2 | |
| | ||||||
* | Get the monitors attached to the display, and their resolution for X11 | DavidPartouche | 2014-09-19 | 1 | -1/+1 | |
| | ||||||
* | Changed is_fullscreen to monitor.is_some() | DavidPartouche | 2014-09-19 | 2 | -5/+2 | |
| | ||||||
* | Added fullscreen support for X11 | David Partouche | 2014-09-19 | 2 | -3/+6 | |
| | ||||||
* | Get the monitors attached to the display, and their resolution for X11 | DavidPartouche | 2014-09-19 | 3 | -23/+63 | |
| | ||||||
* | Changed is_fullscreen to monitor.is_some() | DavidPartouche | 2014-09-19 | 3 | -5/+3 | |
| | ||||||
* | Added fullscreen support for X11 | David Partouche | 2014-09-19 | 3 | -26/+104 | |
| | ||||||
* | Merge pull request #35 from evant/master | tomaka | 2014-09-16 | 2 | -1/+13 | |
|\ | | | | | Make x11 keyboard repeat detectable | |||||
| * | make x11 keyboard repeat detectable | Evan Tatarka | 2014-09-15 | 2 | -1/+13 | |
| | | ||||||
* | | Remove unnecessary win32 linkage | Tomaka17 | 2014-09-15 | 1 | -12/+0 | |
| | | ||||||
* | | Fix warnings in win32 ffi | Tomaka17 | 2014-09-15 | 1 | -4/+3 | |
|/ | ||||||
* | Remove some unused imports | Tomaka17 | 2014-09-13 | 1 | -3/+0 | |
| | ||||||
* | Use gl_generator to generate EGL bindings for Android | Tomaka17 | 2014-09-13 | 2 | -170/+47 | |
| | ||||||
* | Use the gl_generator macro to generate the bindings for WGL | Tomaka17 | 2014-09-12 | 4 | -67/+52 | |
| | ||||||
* | Remove old "egl" module | Tomaka17 | 2014-09-12 | 3 | -303/+0 | |
| | ||||||
* | Add basic support for Android | Tomaka17 | 2014-09-11 | 3 | -1/+464 | |
| |