Skip to content
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