Skip to content

Commit

Permalink
Rename unused parameters to avoid clippy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
FreezyLemon committed Apr 1, 2024
1 parent e713685 commit 6bbd83f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,15 @@ pub fn generate_photon_noise_params(
#[must_use]
#[cfg(feature = "unstable")]
pub fn generate_film_grain_params(
start_time: u64,
end_time: u64,
args: NoiseGenArgs,
_start_time: u64,
_end_time: u64,
_args: NoiseGenArgs,
) -> GrainTableSegment {
todo!("SCIENCE");
// GrainTableSegment {
// start_time,
// end_time,
// scaling_points_y: generate_luma_noise_points(args),
// _start_time,
// _end_time,
// scaling_points_y: generate_luma_noise_points(_args),
// scaling_points_cb: ArrayVec::new(),
// scaling_points_cr: ArrayVec::new(),
// scaling_shift: 8,
Expand Down

0 comments on commit 6bbd83f

Please sign in to comment.