summaryrefslogtreecommitdiff
path: root/alligator_render/src/renderer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'alligator_render/src/renderer.rs')
-rw-r--r--alligator_render/src/renderer.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/alligator_render/src/renderer.rs b/alligator_render/src/renderer.rs
index 9f4aad1..064ff31 100644
--- a/alligator_render/src/renderer.rs
+++ b/alligator_render/src/renderer.rs
@@ -130,10 +130,6 @@ impl Renderer {
// TODO make it possible to use without a window (ie, use a bitmap in memory as a surface)
// TODO this function needs to be smaller
pub fn new(config: &RenderWindowConfig) -> Result<Self, NewRendererError> {
- #[cfg(feature = "profile-with-tracy")]
- profiling::tracy_client::Client::start();
- profiling::register_thread!("main");
-
// build the window
let event_loop = EventLoop::new();
let window = config.to_window().build(&event_loop)?;