From 8e08d723ff7a853f2b10dc0f1408911d5801cea8 Mon Sep 17 00:00:00 2001 From: Ben Bridle Date: Wed, 11 Oct 2023 08:21:10 +1300 Subject: Rewrite phosphor This has been a long-awaited task, the code has been accumulating small changes for a while now. This commit consolidates all these changes in order to make the code more readable and maintainable for the future. Notable changes: - Remove the concept of a ProgramController - Remove all of the dead OpenGL stub code - Update winit to version 28.1, from 27.4 - Use softbuffer for writing pixels to the native display server --- src/press_state.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/press_state.rs (limited to 'src/press_state.rs') diff --git a/src/press_state.rs b/src/press_state.rs deleted file mode 100644 index 5136d66..0000000 --- a/src/press_state.rs +++ /dev/null @@ -1,26 +0,0 @@ -use winit::event::ElementState; - -/// Denotes whether an event was a press event or a release event. -#[derive(Clone, Copy, PartialEq, Debug)] -pub enum PressState { - Pressed, - Released, -} - -impl PressState { - pub fn is_pressed(&self) -> bool { - *self == Self::Pressed - } - pub fn is_released(&self) -> bool { - *self == Self::Released - } -} - -impl From for PressState { - fn from(value: ElementState) -> Self { - match value { - ElementState::Pressed => PressState::Pressed, - ElementState::Released => PressState::Released, - } - } -} -- cgit v1.2.3-70-g09d2