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

Fix path_tracer example #171

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions crates/optix/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,6 @@ fn bindgen_optix(optix_include: &Path, cuda_include: &Path) {
.generate()
.expect("Unable to generate optix bindings");

let dbg_path = std::path::PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap());
bindings
.write_to_file(dbg_path.join("optix_wrapper.rs"))
.expect("Couldn't write bindings!");

bindings
.write_to_file(out_path)
.expect("Couldn't write bindings!");
Expand Down
1 change: 0 additions & 1 deletion crates/optix/examples/rust/ex04_mesh_gpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use cuda_std::kernel;
use optix_device::{
closesthit, get_launch_index,
glam::*,
misc::*,
payload,
trace::TraversableHandle,
trace::{trace, RayFlags},
Expand Down
Loading