From a0cb49edf268c6c302c9dfa0e9e66a0861bac35a Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 1 Oct 2021 23:00:40 -0400 Subject: [PATCH] puffin stuffin --- game/src/scenes/ingame_scene/hud.rs | 1 + game/src/scenes/ingame_scene/mod.rs | 1 + game/src/scenes/ingame_scene/update.rs | 1 + game/src/scenes/ingame_scene/world.rs | 1 + 4 files changed, 4 insertions(+) diff --git a/game/src/scenes/ingame_scene/hud.rs b/game/src/scenes/ingame_scene/hud.rs index 851c045..44d3b3f 100644 --- a/game/src/scenes/ingame_scene/hud.rs +++ b/game/src/scenes/ingame_scene/hud.rs @@ -8,6 +8,7 @@ impl ScreenSpaceRender for InGameScreen { raylib: &mut crate::utilities::non_ref_raylib::HackedRaylibHandle, config: &GameConfig ) { + puffin::profile_function!(); // Calculate the logo position let screen_size = raylib.get_screen_size(); diff --git a/game/src/scenes/ingame_scene/mod.rs b/game/src/scenes/ingame_scene/mod.rs index ae1d042..dc5ee72 100644 --- a/game/src/scenes/ingame_scene/mod.rs +++ b/game/src/scenes/ingame_scene/mod.rs @@ -51,6 +51,7 @@ impl Action for InGameScreen { delta: &chrono::Duration, context: &GameContext, ) -> Result, ScreenError> { + puffin::profile_function!(); trace!("execute() called on InGameScreen"); // Grab exclusive access to the renderer diff --git a/game/src/scenes/ingame_scene/update.rs b/game/src/scenes/ingame_scene/update.rs index 13fd65c..efb8c27 100644 --- a/game/src/scenes/ingame_scene/update.rs +++ b/game/src/scenes/ingame_scene/update.rs @@ -16,6 +16,7 @@ impl FrameUpdate for InGameScreen { delta_seconds: &Duration, config: &GameConfig, ) { + puffin::profile_function!(); // Set the camera's offset based on screen size self.camera.offset = raylib.get_screen_size().div(Vector2::new(2.0, 1.05)); self.camera.target = Vector2::new(self.player.position.x, self.camera.target.y); diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index c0ca99b..67e4ab5 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -14,6 +14,7 @@ impl WorldSpaceRender for InGameScreen { raylib: &mut RaylibMode2D<'_, HackedRaylibHandle>, config: &GameConfig, ) { + puffin::profile_function!(); // Render the player render_character_in_camera_space(raylib, &self.player, &config);