You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* MSRV (Minimum Supported Rust Version) is now `1.65.0` ([#2314](https://github.com/emilk/egui/pull/2314)).
9
12
* ⚠️ BREAKING: egui now expects integrations to do all color blending in gamma space ([#2071](https://github.com/emilk/egui/pull/2071)).
10
13
* ⚠️ BREAKING: if you have overlapping interactive widgets, only the top widget (last added) will be interactive ([#2244](https://github.com/emilk/egui/pull/2244)).
Copy file name to clipboardexpand all lines: crates/egui-wgpu/CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,14 @@ All notable changes to the `egui-wgpu` integration will be noted in this file.
3
3
4
4
5
5
## Unreleased
6
+
7
+
8
+
## 0.20.0 - 2022-08-20 - web support
6
9
* Renamed `RenderPass` to `Renderer`.
7
10
* Renamed `RenderPass::execute` to `RenderPass::render`.
8
11
* Renamed `RenderPass::execute_with_renderpass` to `Renderer::render` (replacing existing `Renderer::render`)
9
12
* Reexported `Renderer`.
13
+
* You can now use `egui-wgpu` on web, using WebGL ([#2107](https://github.com/emilk/egui/pull/2107)).
10
14
*`Renderer` no longer handles pass creation and depth buffer creation ([#2136](https://github.com/emilk/egui/pull/2136))
11
15
*`PrepareCallback` now passes `wgpu::CommandEncoder` ([#2136](https://github.com/emilk/egui/pull/2136))
12
16
*`PrepareCallback` can now returns `wgpu::CommandBuffer` that are bundled into a single `wgpu::Queue::submit` call ([#2230](https://github.com/emilk/egui/pull/2230))
@@ -15,6 +19,7 @@ All notable changes to the `egui-wgpu` integration will be noted in this file.
15
19
*`Painter`'s instance/device/adapter/surface creation is now configurable via `WgpuConfiguration` ([#2207](https://github.com/emilk/egui/pull/2207))
16
20
* Fix panic on using a depth buffer ([#2316](https://github.com/emilk/egui/pull/2316))
17
21
22
+
18
23
## 0.19.0 - 2022-08-20
19
24
* Enables deferred render + surface state initialization for Android ([#1634](https://github.com/emilk/egui/pull/1634)).
20
25
* Make `RenderPass``Send` and `Sync` ([#1883](https://github.com/emilk/egui/pull/1883)).
Copy file name to clipboardexpand all lines: crates/egui-winit/CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,9 @@ All notable changes to the `egui-winit` integration will be noted in this file.
3
3
4
4
5
5
## Unreleased
6
+
7
+
8
+
## 0.20.0 - 2022-08-20
6
9
* The default features of the `winit` crate are not enabled if the default features of `egui-winit` are disabled too ([#1971](https://github.com/emilk/egui/pull/1971)).
7
10
* Added new feature `wayland` which enables Wayland support ([#1971](https://github.com/emilk/egui/pull/1971)).
8
11
* Don't repaint when just moving window ([#1980](https://github.com/emilk/egui/pull/1980)).
0 commit comments