diff --git a/benches/for_profiling.rs b/benches/for_profiling.rs index 6800929..ce32489 100644 --- a/benches/for_profiling.rs +++ b/benches/for_profiling.rs @@ -1,5 +1,8 @@ mod utils; +const BLACK: i32 = 0; +const WHITE: i32 = i32::from_be_bytes([0, 0xff, 0xff, 0xff]); + #[tokio::main] async fn main() { #[cfg(feature = "tracing")] @@ -9,5 +12,5 @@ async fn main() { .nth(1) .expect("Please enter a file to profile"); - utils::render_doc(file, None, 0, 1000).await; + utils::render_doc(file, None, BLACK, WHITE).await; }