You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
From 8a7af9959ad71192951c734e3c91aac5b29165c2 Mon Sep 17 00:00:00 2001
|
|
From: Fabio Valentini <decathorpe@gmail.com>
|
|
Date: Tue, 27 Jun 2023 19:32:07 +0200
|
|
Subject: [PATCH] remove noop hawktracer macros
|
|
|
|
---
|
|
src/plane.rs | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/src/plane.rs b/src/plane.rs
|
|
index 7979edc..6e81a24 100644
|
|
--- a/src/plane.rs
|
|
+++ b/src/plane.rs
|
|
@@ -7,7 +7,6 @@
|
|
// Media Patent License 1.0 was not distributed with this source code in the
|
|
// PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
|
|
|
-use rust_hawktracer::*;
|
|
use std::alloc::handle_alloc_error;
|
|
use std::iter::FusedIterator;
|
|
use std::marker::PhantomData;
|
|
@@ -592,7 +591,6 @@ impl<T: Pixel> Plane<T> {
|
|
/// # Panics
|
|
///
|
|
/// - If the current plane's width and height are not at least `SCALE` times the `in_plane`'s
|
|
- #[hawktracer(downscale_in_place)]
|
|
pub fn downscale_in_place<const SCALE: usize>(&self, in_plane: &mut Plane<T>) {
|
|
let stride = in_plane.cfg.stride;
|
|
let width = in_plane.cfg.width;
|
|
--
|
|
2.41.0
|
|
|