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
wgpu::CurrentSurfaceTexture::Lost=> { /* reconfigure surface, or recreate device if device lost */ }
61
+
wgpu::CurrentSurfaceTexture::Validation=> {
62
+
/* Only happens if there is a validation error and you
63
+
have registered a error scope or uncaptured error handler. */
64
+
}
65
+
}
66
+
```
67
+
68
+
By @cwfitzgerald, @Wumpf, and @emilk in [#9141](https://github.com/gfx-rs/wgpu/pull/9141) and [#????](https://github.com/gfx-rs/wgpu/pull/????).
69
+
47
70
#### `InstanceDescriptor` initialization APIs
48
71
49
72
`InstanceDescriptor`'s convenience constructors (an implementation of `Default` and the static `from_env_or_default` method) have been removed. In their place are new static methods that force recognition of whether a display handle is used:
@@ -164,7 +187,6 @@ By @kpreid in [#9042](https://github.com/gfx-rs/wgpu/pull/9042).
164
187
165
188
#### Other Breaking Changes
166
189
167
-
-`Surface::get_current_texture` can now return `SurfaceError::Occluded`. By @emilk in [#9141](https://github.com/gfx-rs/wgpu/pull/9141).
168
190
- Use clearer field names for `StageError::InvalidWorkgroupSize`. By @ErichDonGubler in [#9192](https://github.com/gfx-rs/wgpu/pull/9192).
0 commit comments