From efaaf2852a290317164e5032db4ea9b449aa0f1e Mon Sep 17 00:00:00 2001 From: mosure Date: Tue, 5 Dec 2023 12:33:31 -0600 Subject: [PATCH] fix: add main to radix gpu test --- tests/gpu/radix.rs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/tests/gpu/radix.rs b/tests/gpu/radix.rs index e69de29b..a0ebf0b3 100644 --- a/tests/gpu/radix.rs +++ b/tests/gpu/radix.rs @@ -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(); +}