All Versions
38
Latest Version
Avg Release Cycle
78 days
Latest Release
166 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.22.0-alpha6 Changes
January 05, 2020- ๐ Fixed dependencies so wrong winit version is not used.
- On X11, got rid of mistaken
XRenderFindVisualFormat
call so that glutin doesn't ignore configs that lack aXRenderPictFormat
. - ๐ On iOS, fixed not linking against OpenGLES.framework.
- ๐ On X11, fixed VSync not being disabled when requested.
-
v0.22.0-alpha5 Changes
November 14, 2019- ๐ Fixed build issue.
-
v0.22.0-alpha4 Changes
November 10, 2019- โก๏ธ Update winit dependency to 0.20.0-alpha4. See winit's CHANGELOG for more info.
- โ Added an xcode example for building for iOS.
- 0๏ธโฃ Made using sRGB the default.
- ๐ MacOSX's raw_handle trait method now returns the CGLContext object.
-
v0.22.0-alpha3 Changes
- Switched from needing a
EventLoop
to aEventLoopWindowTarget
- Switched from needing a
-
v0.22.0-alpha2 Changes
August 15, 2019- ๐ Fixed attribute handling for sRGB in WGL.
- ๐ Fixed VSync being always enabled on EGL.
-
v0.22.0-alpha1 Changes
June 21, 2019- โก๏ธ Update winit dependency to 0.20.0-alpha1. See winit's CHANGELOG for more info.
-
v0.21.1 Changes
January 29, 2020- ๐ Fixed incorrectly documented default value for
ContextBuilder::with_srgb
- ๐ Fixed incorrectly documented default value for
-
v0.21.0 Changes
May 03, 2019- Added
treat_as_current
function. - ๐ฅ Breaking: Replaced
CreationErrorPair
enum variant withCreationErrors
. - โ Added
Clone
toContextBuilder
. - โ Added headless example.
- โ Removed internal code relating to libcaca.
- Implemented
Debug
on all public facing types. - โฌ๏ธ Dropping contexts on platforms using egl and/or glx no longer resets the
current context, if the context dropped wasn't the current context. - โ Added context sharing support to MacOS.
- ๐ฅ Breaking : Removed
ContextTrait
. - ๐ฅ Breaking : Renamed
OsMesaContextExt
toHeadlessContextExt
. Added functions
for using egl-surfaceless. - ๐ฅ Breaking : Changed
WindowedContext
andRawContext
into typedefs of
ContextWrapper
. - ๐ฅ Breaking : Removed
new_windowed
andnew_headless
fromWindowedContext
andContext
, respectively. - ๐ฅ Breaking : Added two new types,
NotCurrent
andPossiblyCurrent
,
whichRawContext
,WindowedContext
,ContextBuilder
andContext
are now
generic over. - Added
{make,treat_as}_not_current
function to{Raw,Windowed,}Context
. - We now load
libGL.so
instead oflibGLX.so
. - ๐ Fixed bug where we drop the hidden window belonging to a headless context on
on X11 and/or Wayland before the actual context. - ๐ "Fixed" bug where we will close
EGLDisplay
s while they are still in use by
others. Angry and/or salty rant can be found inglutin/src/api/egl/mod.rs
,
you can't miss it. - ๐ฅ Breaking :
WindowedContext
s now deref toContext
, notWindow
.
Please use.window()
to access the window.
- Added
-
v0.21.0-rc3 Changes
April 13, 2019- Bumped dependencies.
-
v0.21.0-rc2 Changes
April 08, 2019- Breaking: Removed
DisplayLost
variant toContextError
. - Breaking: Renamed
NotCurrentContext
toNotCurrent
. - Breaking: Renamed
PossiblyCurrentContext
toPossiblyCurrent
. - Added
treat_as_current
function.
- Breaking: Removed