aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add `with_vsync` to WindowBuilder, plus the win32 implementationTomaka172014-10-261-3/+3
|
* Revert "Add `platform_display` impls for win32 and android"tomaka2014-10-251-1/+1
|
* Add `platform_display` impls for win32 and androidTomaka172014-10-241-1/+2
| | | | Fix the cocoa function
* Add accessor for underlying display handle on Linux. Although unimplemented ↵Glenn Watson2014-10-241-0/+4
| | | | on other platforms, this applies to at least android as well.
* Update for rustc and gl-rsTomaka172014-10-221-5/+5
|
* Fix win32 window not closing when destroying itTomaka172014-10-111-0/+1
|
* Fix win32 window not having a destructor in headless modeTomaka172014-10-111-1/+0
|
* Fix warnings while compiling for win32Tomaka172014-10-111-1/+2
|
* Implement headless renderingTomaka172014-10-091-2/+37
|
* Use the gl_generator macro to generate the bindings for WGLTomaka172014-09-121-6/+7
|
* Fix & add some comments for win32Tomaka172014-08-221-13/+15
|
* Win32: no longer fails when calling swap_buffers on a closed windowTomaka172014-08-151-5/+1
|
* Fix #22Tomaka172014-08-121-0/+2
| | | | Thanks to @Anthiste
* Add failure if SwapBuffers returns an errorTomaka172014-08-121-1/+4
|
* set_position now takes intsPierre Krieger2014-08-071-1/+1
| | | | Fix #12
* Fix GL context not being destroyed on win32Tomaka172014-08-031-0/+3
|
* Fix closed flag not being immediatly set on win32Tomaka172014-08-031-0/+12
|
* Now passing WindowBuilder to implwin::Window::newTomaka172014-08-021-6/+3
|
* Add iterators for events and WindowBuilderTomaka172014-08-021-3/+3
|
* Add documentation to the Win32 implementationTomaka172014-08-011-0/+29
|
* Put GetMessage in the same thread as the window creation.Tomaka172014-07-311-22/+10
| | | | Fixes #6
* Split win32/mod.rsTomaka172014-07-311-352/+4
|
* Add monitor support for win32Tomaka172014-07-311-11/+17
|
* Add API for monitorsTomaka172014-07-311-0/+8
|
* MonitorID now defined by the implementationsTomaka172014-07-311-1/+3
|
* make_current() is now unsafeTomaka172014-07-301-2/+2
|
* should_close() renamed to is_closed()Tomaka172014-07-301-5/+5
|
* Fix bad eventsTomaka172014-07-301-2/+2
|
* Window getters now return an Option in case where the Window has been closedTomaka172014-07-301-16/+14
|
* Implement get_position for win32 and fix interfaceTomaka172014-07-271-4/+14
|
* Implement get_*_size() for win32Tomaka172014-07-271-2/+22
|
* get/set_size() -> get/set_inner/outer_size()Tomaka172014-07-271-2/+6
|
* Implement fullscreen for win32Tomaka172014-07-271-6/+43
|
* Draft for monitor APITomaka172014-07-271-2/+3
|
* Add moved events for win32Tomaka172014-07-271-0/+8
|
* Better events handling for win32Tomaka172014-07-271-31/+8
|
* Implement focus events for win32Tomaka172014-07-271-0/+12
|
* Implement mouse clicks on win32Tomaka172014-07-271-0/+36
|
* Implement Pressed and ReleasedTomaka172014-07-271-0/+19
|
* Implement ReceivedCharacter on win32Tomaka172014-07-271-0/+8
|
* Fix events handling on win32Tomaka172014-07-271-13/+39
|
* Temporarily remove NeedRefresh event from win32Tomaka172014-07-271-2/+2
|
* Initial commitTomaka172014-07-271-0/+354