Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Start splitting win32::init into multiple functions | Pierre Krieger | 2015-02-16 | 1 | -327/+338 | |
| | ||||||
* | Merge pull request #277 from tomaka/win32-callback | tomaka | 2015-02-16 | 3 | -233/+200 | |
|\ | | | | | Extract callback from win32/init.rs to its own module | |||||
| * | Extract callback from win32/init.rs | Pierre Krieger | 2015-02-16 | 3 | -233/+200 | |
| | | ||||||
* | | Merge pull request #276 from tomaka/win32-headless | tomaka | 2015-02-16 | 2 | -34/+37 | |
|\ \ | | | | | | | Extract win32 HeadlessContext to a "headless" module | |||||
| * | | Extract win32 HeadlessContext to a "headless" module | Pierre Krieger | 2015-02-16 | 2 | -34/+37 | |
| |/ | ||||||
* / | Style improvement in win32/event.rs | Pierre Krieger | 2015-02-16 | 1 | -178/+178 | |
|/ | ||||||
* | Fix poll_events() blocking on win32 | tomaka | 2015-02-11 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #70 from tomaka/fix-iterators | tomaka | 2015-02-10 | 1 | -40/+50 | |
|\ | | | | | Use platform-specific iterators instead | |||||
| * | Win32: use platform-specific iterators instead | Tomaka17 | 2015-02-10 | 1 | -40/+50 | |
| | | ||||||
* | | Implement win32 initialization in a cleaner way | Pierre Krieger | 2015-02-10 | 2 | -29/+22 | |
|/ | ||||||
* | Rename enum variants of MouseButton | Eduard Bopp | 2015-02-05 | 1 | -12/+12 | |
| | | | | | With enums that are namespaced by default, it seems reasonable to be less redundant in the variant naming here. | |||||
* | Upgrade to latest winapi | Peter Atashian | 2015-01-25 | 3 | -48/+55 | |
| | | | | Signed-off-by: Peter Atashian <retep998@gmail.com> | |||||
* | Add missing get_api stubs. | Glenn Watson | 2015-01-19 | 1 | -0/+4 | |
| | | | | | | | Add hidpi_factor() support for retina displays. Fix Resize and MouseMoved events to handle retina displays. Fix inverted y position for MouseMoved events on mac. Fix initial painting on retina display. | |||||
* | x11, android, win32: [ui]size, [u]int -> [ui]32 | Andrey Lesnikov | 2015-01-13 | 3 | -38/+38 | |
| | ||||||
* | Fix OS X & Win32 builds | Bryan Bell | 2015-01-12 | 1 | -1/+1 | |
| | ||||||
* | Add mouse cursor support | Bryan Bell | 2015-01-12 | 1 | -0/+4 | |
| | | | | | | | 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. | |||||
* | Update for rust alpha 1.0 | Pierre Krieger | 2015-01-10 | 1 | -1/+1 | |
| | ||||||
* | Update for Rustc | Pierre Krieger | 2015-01-08 | 2 | -9/+11 | |
| | ||||||
* | Update for Rustc | Pierre Krieger | 2015-01-05 | 2 | -5/+5 | |
| | ||||||
* | Update for Rustc | Pierre Krieger | 2015-01-03 | 3 | -9/+12 | |
| | ||||||
* | Change the way that events are represented. | Ty Overby | 2015-01-01 | 2 | -12/+15 | |
| | | | | | | | | | | 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. | |||||
* | Unify WindowBuilder and HeadlessRendererBuilder for easier implementations | Pierre Krieger | 2014-12-31 | 1 | -15/+8 | |
| | ||||||
* | Update for changes in Send/Sync traits | Pierre Krieger | 2014-12-30 | 2 | -2/+17 | |
| | ||||||
* | Update for gl_generator's changes | Pierre Krieger | 2014-12-24 | 1 | -16/+2 | |
| | ||||||
* | Update for rustc | Pierre Krieger | 2014-12-23 | 1 | -10/+10 | |
| | ||||||
* | Fix win32 build without the "window" feature | Pierre Krieger | 2014-12-20 | 1 | -1/+0 | |
| | ||||||
* | Add semicolons after macro invocations, as required by the latest nightly. | Michael Powell | 2014-12-19 | 1 | -1/+1 | |
| | ||||||
* | Add resize example, fix warnings, make callback an option so it can be removed. | Glenn Watson | 2014-12-19 | 1 | -2/+2 | |
| | ||||||
* | Add callback function to allow resize messages to be sent on mac. | Glenn Watson | 2014-12-19 | 1 | -0/+6 | |
| | ||||||
* | Change todo to unimplemented | Glenn Watson | 2014-12-19 | 1 | -1/+1 | |
| | ||||||
* | Introduce a WindowProxy for accessing a subset of functionality | Glenn Watson | 2014-12-17 | 1 | -0/+14 | |
| | | | | | | | from other threads. This currently provides a way for other threads to wakeup a blocked event loop on X11. Other platforms have stub functions that need to be implemented. This is similar to the functionality of glfwPostEmptyEvent. | |||||
* | Update for Rustc for win32 | Pierre Krieger | 2014-12-15 | 1 | -1/+1 | |
| | ||||||
* | Add get_api() function | Pierre Krieger | 2014-12-07 | 1 | -0/+10 | |
| | ||||||
* | Use the winapi crate instead of our own ffi | Pierre Krieger | 2014-12-02 | 6 | -1078/+341 | |
| | ||||||
* | Update for rustc on win32 | Pierre Krieger | 2014-11-27 | 1 | -21/+30 | |
| | ||||||
* | Implement multisampling for x11 | Pierre Krieger | 2014-11-27 | 2 | -4/+5 | |
| | ||||||
* | Implement lists sharing | Pierre Krieger | 2014-11-24 | 2 | -8/+17 | |
| | ||||||
* | Update for rustc | Pierre Krieger | 2014-11-23 | 1 | -4/+1 | |
| | ||||||
* | Update for rustc | Pierre Krieger | 2014-11-19 | 3 | -192/+207 | |
| | ||||||
* | Add support for the OpenGL debug flag | Tomaka17 | 2014-11-09 | 2 | -6/+12 | |
| | ||||||
* | Add CS_OWNDC flag when creating win32 window | Tomaka17 | 2014-11-08 | 1 | -1/+1 | |
| | ||||||
* | Remove key modifiers in KeyboardInput | Tomaka17 | 2014-11-06 | 1 | -4/+4 | |
| | ||||||
* | Use a proper error type for window creation | Tomaka17 | 2014-11-05 | 2 | -29/+29 | |
| | ||||||
* | Update for changes in gl-rs | Tomaka17 | 2014-11-05 | 1 | -1/+1 | |
| | ||||||
* | Merge branch 'master' of http://github.com/tomaka/gl-init-rs | Tomaka17 | 2014-11-05 | 2 | -4/+16 | |
|\ | ||||||
| * | Add visibility-related functions to window | Tomaka17 | 2014-11-01 | 2 | -4/+16 | |
| | | ||||||
* | | Fix some warnings in win32 ffi | Tomaka17 | 2014-11-04 | 1 | -2/+2 | |
|/ | ||||||
* | Merge pull request #90 from tomaka/remove-glflush | tomaka | 2014-10-31 | 2 | -6/+0 | |
|\ | | | | | Remove call to glFlush() before swap_buffers on win32 | |||||
| * | Remove call to glFlush() before swap_buffers | Tomaka17 | 2014-10-29 | 2 | -6/+0 | |
| | | | | | | | | | | | | 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. | |||||
* | | fail! -> panic! | Tomaka17 | 2014-10-30 | 1 | -1/+1 | |
|/ |