- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 481
Comparing changes
Open a pull request
base repository: rust-windowing/glutin
base: v0.17.0
head repository: rust-windowing/glutin
compare: master
Commits on Jun 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 4227ea7 - Browse repository at this point
Copy the full SHA 4227ea7View commit details
Commits on Jul 8, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 3a0854c - Browse repository at this point
Copy the full SHA 3a0854cView commit details
Commits on Jul 11, 2018
-
Configuration menu - View commit details
-
Copy full SHA for bda3741 - Browse repository at this point
Copy the full SHA bda3741View commit details
Commits on Aug 2, 2018
-
Update winit to 0.17.0 (#1055) (#1056)
* Update winit to 0.17.0 * Update CHANGELOG.md
Configuration menu - View commit details
-
Copy full SHA for 9e023e7 - Browse repository at this point
Copy the full SHA 9e023e7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ebe927 - Browse repository at this point
Copy the full SHA 4ebe927View commit details
Commits on Aug 3, 2018
-
Update cocoa and core-graphics (#1047)
* Update Cocoa and core-graphics * Version 0.18
Configuration menu - View commit details
-
Copy full SHA for ee97106 - Browse repository at this point
Copy the full SHA ee97106View commit details
Commits on Sep 11, 2018
-
Merges context creation code. (#1029)
* Merge context creation code. Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * iOS p1 * iOS p2 Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Adds examples Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Made emscripten panic when trying to share contexts. Made non-`shareable_with_windowed_contexts` fallback to being shareable if unsupported. Updated docs. Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Marked unsafe functions as unsafe. Changed docs. Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Adds README-SHARING.md, adds safe api Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Doc grammar/spelling changes + decreased warnings. Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Spelling check Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * iOS: Fix warnings * Fix warning Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 209ab92 - Browse repository at this point
Copy the full SHA 209ab92View commit details
Commits on Oct 17, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8f782a2 - Browse repository at this point
Copy the full SHA 8f782a2View commit details
Commits on Oct 30, 2018
-
Wayland: make libEGL loading behaviour consistent (#1075)
* Wayland: make libEGL loading behaviour consistent The x11 implementation will try to load libEGL.so if so.1 is not available but the wayland one didn't and so either required the user to create the sym link themselves or install the devel packages which did it for them. This resolves the latter issues faced in #949 * Update changelog
Configuration menu - View commit details
-
Copy full SHA for ec13728 - Browse repository at this point
Copy the full SHA ec13728View commit details
Commits on Nov 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 78240da - Browse repository at this point
Copy the full SHA 78240daView commit details -
Configuration menu - View commit details
-
Copy full SHA for 704de51 - Browse repository at this point
Copy the full SHA 704de51View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3377691 - Browse repository at this point
Copy the full SHA 3377691View commit details
Commits on Nov 10, 2018
-
Update to winit 0.18.0 + release glutin 0.19.0 (#1081)
* Update to winit 0.18.0 + release glutin 0.19.0 * Update release date * Actually bump glutin version
Configuration menu - View commit details
-
Copy full SHA for 72e8c95 - Browse repository at this point
Copy the full SHA 72e8c95View commit details
Commits on Dec 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6e64954 - Browse repository at this point
Copy the full SHA 6e64954View commit details -
Support NetBSD platform (#1085)
* Add "netbsd" as target OS like other BSD's * Add CHANGELOG entry
Configuration menu - View commit details
-
Copy full SHA for 1ad6560 - Browse repository at this point
Copy the full SHA 1ad6560View commit details
Commits on Dec 21, 2018
-
* api: ios: use trait signature in raw_handle() * egl: remove dead code warning on finish_pbuffer() finish_pbuffer() is only used by android api and windows platform. This patch enables finish_pbuffer() only for those os.
Configuration menu - View commit details
-
Copy full SHA for 0351a24 - Browse repository at this point
Copy the full SHA 0351a24View commit details
Commits on Dec 29, 2018
-
Unify Context new and new_shared functions, add ContextBuilder::buid …
…method, and clarify docs (#1092) * Unify Context new and new_shared functions, add ContextBuilder::build method, and clarify docs * Fix build * Add CHANGELOG entry and fix doc typos * Update CHANGELOG.md Co-Authored-By: Osspial <osspial@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2bee4b0 - Browse repository at this point
Copy the full SHA 2bee4b0View commit details
Commits on Dec 31, 2018
-
Fix broken
link
in dlopen (#1093)* Fix broken `link` in dlopen * Update src/api/dlopen.rs Co-Authored-By: varkor <github@varkor.com>
Configuration menu - View commit details
-
Copy full SHA for 8e61035 - Browse repository at this point
Copy the full SHA 8e61035View commit details
Commits on Jan 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 564c2b7 - Browse repository at this point
Copy the full SHA 564c2b7View commit details
Commits on Jan 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c16f997 - Browse repository at this point
Copy the full SHA c16f997View commit details
Commits on Feb 26, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 96b965a - Browse repository at this point
Copy the full SHA 96b965aView commit details -
Gentz' misc stuff, containing the following: (#1101)
Adds context sharing support for the X11 and Wayland backends Separated context support for both Wayland and X11. Add sharing support to windows. Added CHANGELOG entry and fix doc typos Merged @Osspial's context_api_polish changes Marked unsafe functions that should be safe as safe. Refactored code to be more consistent/cleaner. Ran rustfmt on everything. Removed `shareable_with_windowed_contexts` and separate ext for OSMesa. Merged @Yyt's macos fix. Renamed `GlWindow` to `CombinedContext`. We no longer load `libegl.so` and `libgl.so` multiple times. Renamed `GlContext{,Ext}` to `ContextTrait{,Ext}`. Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6598843 - Browse repository at this point
Copy the full SHA 6598843View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 23b3b10 - Browse repository at this point
Copy the full SHA 23b3b10View commit details
Commits on Mar 3, 2019
-
Revert code example in README.md (#1107)
The example was not representative of the current API.
Configuration menu - View commit details
-
Copy full SHA for b2a5ed7 - Browse repository at this point
Copy the full SHA b2a5ed7View commit details -
Changes for Rust 2018. Removed distinction between `{Combined,Separat…
…ed}Context`s. Style changes. Doc update. Changelog. Unwraps. Fix android build. egl + glx + wgl context recreation support. An extra example. Improved osmesa ext. (#1105) Changes for Rust 2018. Removed distinction between `{Combined,Separated}Context`s. Style changes. Doc update. Changelog. Unwraps. Fix android build. egl + glx + wgl context recreation support. An extra example. Improved osmesa ext. (#1105) Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for c0b3605 - Browse repository at this point
Copy the full SHA c0b3605View commit details -
Use the shared_library dependency only on required platforms (#1108)
* Conditionalize shared_library dependency, only used for *nix platforms
Configuration menu - View commit details
-
Copy full SHA for af42114 - Browse repository at this point
Copy the full SHA af42114View commit details
Commits on Mar 6, 2019
-
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6a046d0 - Browse repository at this point
Copy the full SHA 6a046d0View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for fad332c - Browse repository at this point
Copy the full SHA fad332cView commit details
Commits on Mar 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 23bb3f8 - Browse repository at this point
Copy the full SHA 23bb3f8View commit details
Commits on Mar 10, 2019
-
Improvements to the headless api and separating out ffi bindings. New…
… winit release. Style changes. Got rid of separated contexts in favour of raw contexts. (#1110) Improvements to the headless api and separating out ffi bindings. New winit release. Style changes. Got rid of separated contexts in favour of raw contexts. (#1110) Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 647e6cd - Browse repository at this point
Copy the full SHA 647e6cdView commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 71a71e2 - Browse repository at this point
Copy the full SHA 71a71e2View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 6b3212c - Browse repository at this point
Copy the full SHA 6b3212cView commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7ed5dbe - Browse repository at this point
Copy the full SHA 7ed5dbeView commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for f0d9890 - Browse repository at this point
Copy the full SHA f0d9890View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 521a352 - Browse repository at this point
Copy the full SHA 521a352View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for d06f2ca - Browse repository at this point
Copy the full SHA d06f2caView commit details
Commits on Mar 15, 2019
-
Blank backend support. (#1120)
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2c997b6 - Browse repository at this point
Copy the full SHA 2c997b6View commit details
Commits on Mar 16, 2019
-
Add
README.md
s to crate.io crates. (#1124)Add `README.md`s to crate.io crates.
Configuration menu - View commit details
-
Copy full SHA for 3b56571 - Browse repository at this point
Copy the full SHA 3b56571View commit details
Commits on Mar 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d96fd6f - Browse repository at this point
Copy the full SHA d96fd6fView commit details
Commits on Mar 19, 2019
-
Fixes headless issues w/linux relating to invalid drop order. Resolves …
Configuration menu - View commit details
-
Copy full SHA for e291a19 - Browse repository at this point
Copy the full SHA e291a19View commit details
Commits on Mar 20, 2019
-
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 600030a - Browse repository at this point
Copy the full SHA 600030aView commit details
Commits on Mar 24, 2019
-
Added headless guards to EGL and GLX. Gets rid of libc dependency. U…
…pdate changelog, fixed multiwindow example. (#1126) Added headless guards to EGL and GLX. Gets rid of libc dependency. Update changelog, fixed multiwindow example. Add OSMesa example Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2695ebc - Browse repository at this point
Copy the full SHA 2695ebcView commit details
Commits on Apr 2, 2019
-
Attempt to implement context sharing on Mac (#1132)
Attempt to implement context sharing on Mac
Configuration menu - View commit details
-
Copy full SHA for 7d345fa - Browse repository at this point
Copy the full SHA 7d345faView commit details -
0.21 Api changes. Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 90f0ef4 - Browse repository at this point
Copy the full SHA 90f0ef4View commit details
Commits on Apr 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9b8dd2a - Browse repository at this point
Copy the full SHA 9b8dd2aView commit details
Commits on Apr 8, 2019
-
Transition to proper headless support on linux. (#1133)
* Transition to proper headless support on linux. * Account for display being null. * Add docs. Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1ed68d6 - Browse repository at this point
Copy the full SHA 1ed68d6View commit details -
Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 45d436c - Browse repository at this point
Copy the full SHA 45d436cView commit details
Commits on Apr 9, 2019
-
RC2 Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5bde1e7 - Browse repository at this point
Copy the full SHA 5bde1e7View commit details
Commits on Apr 14, 2019
-
* RC3 Signed-off-by: Hal Gentz <zegentzy@protonmail.com> * Changes Signed-off-by: Hal Gentz <zegentzy@protonmail.com>
Configuration menu - View commit details
-
Copy full SHA for 24c5fdf - Browse repository at this point
Copy the full SHA 24c5fdfView commit details
Commits on Apr 16, 2019
-
Configuration menu - View commit details
-
Copy full SHA for dcdfc01 - Browse repository at this point
Copy the full SHA dcdfc01View commit details
There are no files selected for viewing
This file was deleted.
This file was deleted.
This file was deleted.