We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 841e423 commit fd4b961Copy full SHA for fd4b961
book_src/loading_opengl/win32.md
@@ -192,7 +192,9 @@ pub struct PIXELFORMATDESCRIPTOR {
192
```
193
194
However, since we want the type to *always* say it's size and version,
195
-we'll have a `Default` impl that just sets the size and version for us.
+we won't use our `unsafe_impl_default_zeroed!` that we had before.
196
+Instead, we'll have a `Default` impl that is *mostly* zeroed memory,
197
+and then also sets the size and version for us.
198
```rust
199
impl Default for PIXELFORMATDESCRIPTOR {
200
#[inline]
0 commit comments