Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tompro committed Nov 13, 2024
1 parent fff77c4 commit 71061eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion gui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ impl App {
fn new() -> Result<Self, ApplicationError> {
let main_window = ui::MainWindow::new().map_err(ApplicationError::CreateMainWindow)?;

let graphics_api = graphics::DefaultApi::init().map_err(ApplicationError::InitGraphicsApi)?;
let graphics_api =
graphics::DefaultApi::init().map_err(ApplicationError::InitGraphicsApi)?;

let devices: Vec<SharedString> = graphics_api
.enumerate_physical_devices()
Expand Down
5 changes: 1 addition & 4 deletions gui/src/screen/vulkan/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
use self::buffer::VulkanBuffer;
use super::{Screen, ScreenBuffer};
use crate::vmm::VmmScreen;
use ash::vk::{
DeviceCreateInfo, DeviceQueueCreateInfo, Handle,
QueueFlags,
};
use ash::vk::{DeviceCreateInfo, DeviceQueueCreateInfo, Handle, QueueFlags};
use ash::Device;
use std::sync::Arc;
use thiserror::Error;
Expand Down

0 comments on commit 71061eb

Please sign in to comment.