Remove unused code

This commit is contained in:
Hanno Braun 2025-03-25 20:51:19 +01:00
parent 3b809602f9
commit 048818602f

View File

@ -16,7 +16,7 @@ use crate::{
RendererInitError, RendererInitError,
input::{DEFAULT_CAMERA_TUNING_CONFIG, InputEvent}, input::{DEFAULT_CAMERA_TUNING_CONFIG, InputEvent},
viewer::ViewerWindow, viewer::ViewerWindow,
window::{self, WindowSize}, window::WindowSize,
}; };
/// # Display the provided mesh in a window that processes input /// # Display the provided mesh in a window that processes input
@ -41,10 +41,6 @@ pub enum Error {
#[error("Error initializing event loop")] #[error("Error initializing event loop")]
EventLoop(#[from] EventLoopError), EventLoop(#[from] EventLoopError),
/// Error initializing window
#[error("Error initializing window")]
Window(#[from] window::WindowError),
/// Error initializing graphics /// Error initializing graphics
#[error("Error initializing graphics")] #[error("Error initializing graphics")]
Graphics(#[from] RendererInitError), Graphics(#[from] RendererInitError),