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

Add Safe GPU Api #41

Closed
wants to merge 12 commits into from
2 changes: 1 addition & 1 deletion tracy-client-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fn link_dependencies() {
Ok("linux" | "android") => println!("cargo:rustc-link-lib=dl"),
Ok("freebsd" | "dragonfly") => println!("cargo:rustc-link-lib=c"),
Ok("windows") => println!("cargo:rustc-link-lib=user32"),
Ok(_) => {},
Ok(_) => {}
Err(e) => {
writeln!(::std::io::stderr(), "Unable to get target_os=`{}`!", e)
.expect("could not report the error");
Expand Down
1 change: 0 additions & 1 deletion tracy-client-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ mod generated;
#[cfg(feature = "enable")]
pub use generated::*;


#[cfg(all(feature = "enable", feature = "manual-lifetime"))]
mod generated_manual_lifetime;
#[cfg(all(feature = "enable", feature = "manual-lifetime"))]
Expand Down
2 changes: 1 addition & 1 deletion tracy-client/src/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub struct Frame(Client, FrameName);

/// A name for secondary and non-continuous frames.
///
/// Create with the [`frame_name!`] macro.
/// Create with the [`frame_name!`](crate::frame_name) macro.
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct FrameName(pub(crate) &'static str);

Expand Down
Loading