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

Replace TODO: with TODO(emilk): and update code guidelines

This commit is contained in:
Emil Ernerfeldt
2022-05-21 16:53:25 +02:00
parent 3d5e203d86
commit f3e305a646
60 changed files with 140 additions and 112 deletions

View File

@@ -44,7 +44,7 @@ impl Painter {
format: surface_format,
width: size.width as u32,
height: size.height as u32,
present_mode: wgpu::PresentMode::Fifo, // TODO: make vsync configurable
present_mode: wgpu::PresentMode::Fifo, // TODO(emilk): make vsync configurable
};
surface.configure(&device, &surface_config);
@@ -143,6 +143,6 @@ impl Painter {
#[allow(clippy::unused_self)]
pub fn destroy(&mut self) {
// TODO: something here?
// TODO(emilk): something here?
}
}