Skip to content

Commit cb830b9

Browse files
committed
fix(recording): allow too_many_arguments on capture pipeline trait for Windows
Made-with: Cursor
1 parent f4d41bc commit cb830b9

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

crates/recording/src/capture_pipeline.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ impl EncoderPreferences {
5252
}
5353

5454
pub trait MakeCapturePipeline: ScreenCaptureFormat + std::fmt::Debug + 'static {
55+
#[allow(clippy::too_many_arguments)]
5556
async fn make_studio_mode_pipeline(
5657
screen_capture: screen_capture::VideoSourceConfig,
5758
output_path: PathBuf,
@@ -169,6 +170,7 @@ impl MakeCapturePipeline for screen_capture::CMSampleBufferCapture {
169170

170171
#[cfg(windows)]
171172
impl MakeCapturePipeline for screen_capture::Direct3DCapture {
173+
#[allow(clippy::too_many_arguments)]
172174
async fn make_studio_mode_pipeline(
173175
screen_capture: screen_capture::VideoSourceConfig,
174176
output_path: PathBuf,

0 commit comments

Comments
 (0)