1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-29 04:40:03 -04:00

Fix egui_kittest failing to compile without the wgpu feature (#8381)

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Emil Ernerfeldt
2026-08-03 04:58:01 -07:00
committed by GitHub
parent 3d70aa1123
commit eba2780dba

View File

@@ -40,7 +40,7 @@ impl Default for LazyRenderer {
return Self::new(crate::wgpu::WgpuTestRenderer::new); return Self::new(crate::wgpu::WgpuTestRenderer::new);
#[cfg(not(feature = "wgpu"))] #[cfg(not(feature = "wgpu"))]
return Self::Uninitialized { return Self::Uninitialized {
textures_delta: Vec::new(), textures_delta: Default::default(),
builder: None, builder: None,
}; };
} }