Skip to content

Commit

Permalink
Move reactive channel to a more logical place
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurBrussee committed Jan 28, 2025
1 parent 3223236 commit 737b7e9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/brush-app/src/app.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::sync::{Arc, RwLock};

use crate::channel::reactive_receiver;
use crate::orbit_controls::CameraController;
use crate::panels::SettingsPanel;
use crate::panels::{DatasetPanel, PresetsPanel, ScenePanel, StatsPanel, TracingPanel};
Expand All @@ -9,7 +10,6 @@ use brush_process::process_loop::{
start_process, ControlMessage, ProcessArgs, ProcessMessage, RunningProcess,
};
use brush_render::camera::Camera;
use brush_ui::channel::reactive_receiver;
use burn_wgpu::WgpuDevice;
use eframe::egui;
use egui_tiles::SimplificationOptions;
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions crates/brush-app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ mod orbit_controls;
mod panels;

mod app;
mod channel;

pub use app::*;
use burn::backend::Autodiff;
Expand Down
1 change: 0 additions & 1 deletion crates/brush-ui/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ use eframe::egui_wgpu::WgpuConfiguration;
use wgpu::{Adapter, Features};

pub mod burn_texture;
pub mod channel;

pub fn create_egui_options() -> WgpuConfiguration {
WgpuConfiguration {
Expand Down

0 comments on commit 737b7e9

Please sign in to comment.