Skip to content

Commit

Permalink
fix: add main to radix gpu test
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Dec 5, 2023
1 parent 062090f commit efaaf28
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions tests/gpu/radix.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
use std::sync::{
Arc,
Mutex,
};

use bevy::{
prelude::*,
app::AppExit,
core::FrameCount,
render::view::screenshot::ScreenshotManager,
window::PrimaryWindow,
};

use bevy_gaussian_splatting::{
GaussianCloud,
GaussianSplattingBundle,
random_gaussians,
};

use _harness::{
TestHarness,
test_harness_app,
TestStateArc,
};

mod _harness;


fn main() {
// let mut app = test_harness_app(TestHarness {
// resolution: (512.0, 512.0),
// });

// app.add_systems(Startup, setup);
// app.add_systems(Update, capture_ready);

// app.run();
}

0 comments on commit efaaf28

Please sign in to comment.