Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated start_frame_capture(), end_frame_capture() #122

Merged
merged 1 commit into from
Apr 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/renderdoc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ impl RenderDoc<V100> {
/// For example, you can specify `null(), null()` for the device to capture on if you have only
/// one device and only one or zero windows, and RenderDoc will capture from that device.
///
/// This function must be paired with a matching `start_frame_capture()` to succeed.
/// This function must be paired with a matching `end_frame_capture()` to succeed.
///
/// ```rust,no_run
/// # use renderdoc::{Error, RenderDoc, V100};
Expand Down Expand Up @@ -480,7 +480,7 @@ impl RenderDoc<V100> {
/// For example, you can specify `null(), null()` for the device to capture on if you have only
/// one device and only one or zero windows, and RenderDoc will capture from that device.
///
/// This function must be paired with a matching `end_frame_capture()` to complete.
/// This function must be paired with a matching `start_frame_capture()` to complete.
///
/// ```rust,no_run
/// # use renderdoc::{Error, RenderDoc, V100};
Expand Down