cube
This commit is contained in:
parent
593b9ef119
commit
32a5c46f8c
7 changed files with 430 additions and 16 deletions
|
@ -17,7 +17,12 @@ once_cell = "1.20.2"
|
||||||
parking_lot.workspace = true
|
parking_lot.workspace = true
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
rustyline = { version = "15.0.0", features = ["derive", "rustyline-derive"] }
|
rustyline = { version = "15.0.0", features = ["derive", "rustyline-derive"] }
|
||||||
tokio = { version = "1.42.0", features = ["macros", "parking_lot", "rt", "rt-multi-thread"] }
|
thiserror = "2.0.11"
|
||||||
|
tokio = { version = "1.42.0", features = ["macros", "parking_lot","rt-multi-thread"] }
|
||||||
|
wgpu = "24.0.1"
|
||||||
|
winit = "0.30.8"
|
||||||
|
bytemuck = "1.21.0"
|
||||||
|
futures = "0.3.31"
|
||||||
|
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
|
|
|
@ -1,3 +1,15 @@
|
||||||
// struct ComponentRegistry {
|
|
||||||
// components
|
|
||||||
// }
|
pub trait Component: Sized + 'static {
|
||||||
|
fn update(&mut self, delta_time: f32);
|
||||||
|
fn serialize(&self) -> Vec<u8>;
|
||||||
|
fn deserialize(data: &[u8;6]) -> Self;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait Entity: Sized {
|
||||||
|
fn add_component<C: Component>(&mut self, component: C);
|
||||||
|
fn remove_component<C: Component>(&mut self);
|
||||||
|
fn get_component<C: Component>(&self) -> Option<&C>;
|
||||||
|
fn serialize(&self) -> Vec<u8>;
|
||||||
|
fn deserialize(data: &[u8;6]) -> Self;
|
||||||
|
}
|
|
@ -4,3 +4,5 @@ pub mod panic;
|
||||||
pub mod repl;
|
pub mod repl;
|
||||||
pub mod splash;
|
pub mod splash;
|
||||||
pub mod workspace;
|
pub mod workspace;
|
||||||
|
|
||||||
|
pub mod render;
|
316
engine/src/core/render/ctx.rs
Normal file
316
engine/src/core/render/ctx.rs
Normal file
|
@ -0,0 +1,316 @@
|
||||||
|
|
||||||
|
use std::borrow::Cow;
|
||||||
|
use std::sync::Arc;
|
||||||
|
use std::time::Instant;
|
||||||
|
use thiserror::Error;
|
||||||
|
use winit::window::Window;
|
||||||
|
use futures::executor::block_on;
|
||||||
|
#[derive(Debug, Error)]
|
||||||
|
pub enum ContextError {
|
||||||
|
#[error("Failed to create WGPU surface: {0}")]
|
||||||
|
SurfaceCreationFailure(#[from] wgpu::CreateSurfaceError),
|
||||||
|
}
|
||||||
|
|
||||||
|
/// This WGSL shader generates a cube procedurally and rotates it around the Y axis.
|
||||||
|
/// A uniform (u.time) is used as the rotation angle. After rotation, a simple
|
||||||
|
/// perspective projection is applied (dividing x,y by z) to produce clip-space coordinates.
|
||||||
|
const CUBE_SHADER: &str = r#"
|
||||||
|
struct Uniforms {
|
||||||
|
time: f32,
|
||||||
|
// pad to 16 bytes (uniforms require 16-byte alignment)
|
||||||
|
padding0: f32,
|
||||||
|
padding1: f32,
|
||||||
|
padding2: f32,
|
||||||
|
};
|
||||||
|
|
||||||
|
@group(0) @binding(0)
|
||||||
|
var<uniform> u: Uniforms;
|
||||||
|
|
||||||
|
// Returns a rotation matrix about the Y axis.
|
||||||
|
fn rotationY(angle: f32) -> mat3x3<f32> {
|
||||||
|
let c = cos(angle);
|
||||||
|
let s = sin(angle);
|
||||||
|
return mat3x3<f32>(
|
||||||
|
vec3<f32>( c, 0.0, s),
|
||||||
|
vec3<f32>(0.0, 1.0, 0.0),
|
||||||
|
vec3<f32>(-s, 0.0, c)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
@vertex
|
||||||
|
fn vs_main(@builtin(vertex_index) vid: u32) -> @builtin(position) vec4<f32> {
|
||||||
|
// We generate 36 vertices (6 faces * 6 vertices per face)
|
||||||
|
let face: u32 = vid / 6u; // which face (0..5)
|
||||||
|
let corner: u32 = vid % 6u; // which corner within that face
|
||||||
|
|
||||||
|
// Offsets for the two triangles that make up a face:
|
||||||
|
// (these are in a 2D space, later used to compute positions on the face)
|
||||||
|
var offsets = array<vec2<f32>, 6>(
|
||||||
|
vec2<f32>(-1.0, -1.0),
|
||||||
|
vec2<f32>( 1.0, -1.0),
|
||||||
|
vec2<f32>( 1.0, 1.0),
|
||||||
|
vec2<f32>( 1.0, 1.0),
|
||||||
|
vec2<f32>(-1.0, 1.0),
|
||||||
|
vec2<f32>(-1.0, -1.0)
|
||||||
|
);
|
||||||
|
|
||||||
|
var center: vec3<f32>;
|
||||||
|
var uvec: vec3<f32>;
|
||||||
|
var vvec: vec3<f32>;
|
||||||
|
|
||||||
|
// Define each face of the cube (cube of side length 1 centered at origin)
|
||||||
|
if (face == 0u) {
|
||||||
|
// Front face (z = +0.5)
|
||||||
|
center = vec3<f32>(0.0, 0.0, 0.5);
|
||||||
|
uvec = vec3<f32>(0.5, 0.0, 0.0);
|
||||||
|
vvec = vec3<f32>(0.0, 0.5, 0.0);
|
||||||
|
} else if (face == 1u) {
|
||||||
|
// Back face (z = -0.5)
|
||||||
|
center = vec3<f32>(0.0, 0.0, -0.5);
|
||||||
|
uvec = vec3<f32>(-0.5, 0.0, 0.0);
|
||||||
|
vvec = vec3<f32>(0.0, 0.5, 0.0);
|
||||||
|
} else if (face == 2u) {
|
||||||
|
// Right face (x = +0.5)
|
||||||
|
center = vec3<f32>(0.5, 0.0, 0.0);
|
||||||
|
uvec = vec3<f32>(0.0, 0.0, -0.5);
|
||||||
|
vvec = vec3<f32>(0.0, 0.5, 0.0);
|
||||||
|
} else if (face == 3u) {
|
||||||
|
// Left face (x = -0.5)
|
||||||
|
center = vec3<f32>(-0.5, 0.0, 0.0);
|
||||||
|
uvec = vec3<f32>(0.0, 0.0, 0.5);
|
||||||
|
vvec = vec3<f32>(0.0, 0.5, 0.0);
|
||||||
|
} else if (face == 4u) {
|
||||||
|
// Top face (y = +0.5)
|
||||||
|
center = vec3<f32>(0.0, 0.5, 0.0);
|
||||||
|
uvec = vec3<f32>(0.5, 0.0, 0.0);
|
||||||
|
vvec = vec3<f32>(0.0, 0.0, -0.5);
|
||||||
|
} else {
|
||||||
|
// Bottom face (y = -0.5)
|
||||||
|
center = vec3<f32>(0.0, -0.5, 0.0);
|
||||||
|
uvec = vec3<f32>(0.5, 0.0, 0.0);
|
||||||
|
vvec = vec3<f32>(0.0, 0.0, 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
let off = offsets[corner];
|
||||||
|
var pos = center + off.x * uvec + off.y * vvec;
|
||||||
|
|
||||||
|
// Apply a rotation about the Y axis using the uniform time.
|
||||||
|
let rot = rotationY(u.time);
|
||||||
|
pos = rot * pos;
|
||||||
|
|
||||||
|
// Translate the cube so it is in front of the camera.
|
||||||
|
pos = pos + vec3<f32>(0.0, 0.0, 2.0);
|
||||||
|
|
||||||
|
// Simple perspective projection: divide x and y by z.
|
||||||
|
let projected = vec2<f32>(pos.x / pos.z, pos.y / pos.z);
|
||||||
|
return vec4<f32>(projected, 0.0, 1.0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@fragment
|
||||||
|
fn fs_main() -> @location(0) vec4<f32> {
|
||||||
|
// Output a fixed color.
|
||||||
|
return vec4<f32>(0.7, 0.7, 0.9, 1.0);
|
||||||
|
}
|
||||||
|
"#;
|
||||||
|
|
||||||
|
pub struct WgpuCtx<'window> {
|
||||||
|
device: wgpu::Device,
|
||||||
|
queue: wgpu::Queue,
|
||||||
|
surface: wgpu::Surface<'window>,
|
||||||
|
surface_config: wgpu::SurfaceConfiguration,
|
||||||
|
adapter: wgpu::Adapter,
|
||||||
|
render_pipeline: wgpu::RenderPipeline,
|
||||||
|
uniform_buffer: wgpu::Buffer,
|
||||||
|
start_time: Instant,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'window> WgpuCtx<'window> {
|
||||||
|
pub async fn new(window: Arc<Window>) -> Result<WgpuCtx<'window>, ContextError> {
|
||||||
|
let instance = wgpu::Instance::default();
|
||||||
|
let surface = instance.create_surface(Arc::clone(&window))?;
|
||||||
|
let adapter = instance
|
||||||
|
.request_adapter(&wgpu::RequestAdapterOptions {
|
||||||
|
power_preference: wgpu::PowerPreference::default(),
|
||||||
|
force_fallback_adapter: false,
|
||||||
|
compatible_surface: Some(&surface),
|
||||||
|
})
|
||||||
|
.await
|
||||||
|
.expect("Failed to obtain render adapter");
|
||||||
|
let (device, queue) = adapter
|
||||||
|
.request_device(
|
||||||
|
&wgpu::DeviceDescriptor {
|
||||||
|
label: None,
|
||||||
|
required_features: wgpu::Features::empty(),
|
||||||
|
required_limits: wgpu::Limits::downlevel_webgl2_defaults()
|
||||||
|
.using_resolution(adapter.limits()),
|
||||||
|
memory_hints: wgpu::MemoryHints::Performance,
|
||||||
|
},
|
||||||
|
None,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.expect("Failed to create rendering device");
|
||||||
|
|
||||||
|
let size = window.inner_size();
|
||||||
|
let width = size.width.max(1);
|
||||||
|
let height = size.height.max(1);
|
||||||
|
let surface_config = surface.get_default_config(&adapter, width, height).unwrap();
|
||||||
|
surface.configure(&device, &surface_config);
|
||||||
|
|
||||||
|
// Create a uniform buffer (16 bytes to satisfy alignment requirements)
|
||||||
|
let uniform_buffer = device.create_buffer(&wgpu::BufferDescriptor {
|
||||||
|
label: Some("Uniform Buffer"),
|
||||||
|
size: 16,
|
||||||
|
usage: wgpu::BufferUsages::UNIFORM | wgpu::BufferUsages::COPY_DST,
|
||||||
|
mapped_at_creation: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Create the shader module from the inline WGSL shader.
|
||||||
|
let shader = device.create_shader_module(wgpu::ShaderModuleDescriptor {
|
||||||
|
label: Some("Cube Shader"),
|
||||||
|
source: wgpu::ShaderSource::Wgsl(Cow::Borrowed(CUBE_SHADER)),
|
||||||
|
});
|
||||||
|
|
||||||
|
// Create a bind group layout for the uniform.
|
||||||
|
let bind_group_layout = device.create_bind_group_layout(&wgpu::BindGroupLayoutDescriptor {
|
||||||
|
label: Some("Uniform Bind Group Layout"),
|
||||||
|
entries: &[wgpu::BindGroupLayoutEntry {
|
||||||
|
binding: 0,
|
||||||
|
visibility: wgpu::ShaderStages::VERTEX,
|
||||||
|
ty: wgpu::BindingType::Buffer {
|
||||||
|
ty: wgpu::BufferBindingType::Uniform,
|
||||||
|
has_dynamic_offset: false,
|
||||||
|
min_binding_size: wgpu::BufferSize::new(16),
|
||||||
|
},
|
||||||
|
count: None,
|
||||||
|
}],
|
||||||
|
});
|
||||||
|
|
||||||
|
// Create the pipeline layout.
|
||||||
|
let pipeline_layout = device.create_pipeline_layout(&wgpu::PipelineLayoutDescriptor {
|
||||||
|
label: Some("Cube Pipeline Layout"),
|
||||||
|
bind_group_layouts: &[&bind_group_layout],
|
||||||
|
push_constant_ranges: &[],
|
||||||
|
});
|
||||||
|
|
||||||
|
// TODO: add proper vertex buffer
|
||||||
|
let render_pipeline = device.create_render_pipeline(&wgpu::RenderPipelineDescriptor {
|
||||||
|
label: Some("Cube Render Pipeline"),
|
||||||
|
layout: Some(&pipeline_layout),
|
||||||
|
vertex: wgpu::VertexState {
|
||||||
|
module: &shader,
|
||||||
|
entry_point: Some("vs_main"),
|
||||||
|
buffers: &[],
|
||||||
|
compilation_options: wgpu::PipelineCompilationOptions::default(),
|
||||||
|
},
|
||||||
|
fragment: Some(wgpu::FragmentState {
|
||||||
|
module: &shader,
|
||||||
|
entry_point: Some("fs_main"),
|
||||||
|
targets: &[Some(wgpu::ColorTargetState {
|
||||||
|
format: surface_config.format,
|
||||||
|
blend: Some(wgpu::BlendState::REPLACE),
|
||||||
|
write_mask: wgpu::ColorWrites::ALL,
|
||||||
|
})],
|
||||||
|
compilation_options: wgpu::PipelineCompilationOptions::default(),
|
||||||
|
}),
|
||||||
|
primitive: wgpu::PrimitiveState {
|
||||||
|
topology: wgpu::PrimitiveTopology::TriangleList,
|
||||||
|
strip_index_format: None,
|
||||||
|
front_face: wgpu::FrontFace::Ccw,
|
||||||
|
cull_mode: None,
|
||||||
|
polygon_mode: wgpu::PolygonMode::Fill,
|
||||||
|
unclipped_depth: false,
|
||||||
|
conservative: false,
|
||||||
|
},
|
||||||
|
depth_stencil: None,
|
||||||
|
multisample: wgpu::MultisampleState {
|
||||||
|
count: 1,
|
||||||
|
mask: !0,
|
||||||
|
alpha_to_coverage_enabled: false,
|
||||||
|
},
|
||||||
|
multiview: None,
|
||||||
|
cache: None,
|
||||||
|
});
|
||||||
|
|
||||||
|
Ok(WgpuCtx {
|
||||||
|
device,
|
||||||
|
queue,
|
||||||
|
surface,
|
||||||
|
surface_config,
|
||||||
|
adapter,
|
||||||
|
render_pipeline,
|
||||||
|
uniform_buffer,
|
||||||
|
start_time: Instant::now(),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new_blocking(window: Arc<Window>) -> Result<WgpuCtx<'window>, ContextError> {
|
||||||
|
block_on(Self::new(window))
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn resize(&mut self, new_size: (u32, u32)) {
|
||||||
|
let (width, height) = new_size;
|
||||||
|
self.surface_config.width = width.max(1);
|
||||||
|
self.surface_config.height = height.max(1);
|
||||||
|
self.surface.configure(&self.device, &self.surface_config);
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn draw(&mut self) {
|
||||||
|
// Update the uniform buffer with the elapsed time.
|
||||||
|
let elapsed = self.start_time.elapsed().as_secs_f32();
|
||||||
|
// Pack into 4 floats (pad to 16 bytes)
|
||||||
|
let time_data = [elapsed, 0.0, 0.0, 0.0];
|
||||||
|
self.queue.write_buffer(&self.uniform_buffer, 0, bytemuck::cast_slice(&time_data));
|
||||||
|
|
||||||
|
let surface_texture = self
|
||||||
|
.surface
|
||||||
|
.get_current_texture()
|
||||||
|
.expect("Failed to get surface texture");
|
||||||
|
let view = surface_texture
|
||||||
|
.texture
|
||||||
|
.create_view(&wgpu::TextureViewDescriptor::default());
|
||||||
|
|
||||||
|
let mut encoder =
|
||||||
|
self.device
|
||||||
|
.create_command_encoder(&wgpu::CommandEncoderDescriptor {
|
||||||
|
label: Some("Cube Command Encoder"),
|
||||||
|
});
|
||||||
|
|
||||||
|
{
|
||||||
|
let mut render_pass = encoder.begin_render_pass(&wgpu::RenderPassDescriptor {
|
||||||
|
label: Some("Cube Render Pass"),
|
||||||
|
color_attachments: &[Some(wgpu::RenderPassColorAttachment {
|
||||||
|
view: &view,
|
||||||
|
resolve_target: None,
|
||||||
|
ops: wgpu::Operations {
|
||||||
|
load: wgpu::LoadOp::Clear(wgpu::Color {
|
||||||
|
r: 0.1,
|
||||||
|
g: 0.2,
|
||||||
|
b: 0.3,
|
||||||
|
a: 1.0,
|
||||||
|
}),
|
||||||
|
store: wgpu::StoreOp::Store,
|
||||||
|
},
|
||||||
|
})],
|
||||||
|
depth_stencil_attachment: None,
|
||||||
|
timestamp_writes: None,
|
||||||
|
occlusion_query_set: None,
|
||||||
|
});
|
||||||
|
render_pass.set_pipeline(&self.render_pipeline);
|
||||||
|
// Create a bind group on the fly for the uniform.
|
||||||
|
let bind_group = self.device.create_bind_group(&wgpu::BindGroupDescriptor {
|
||||||
|
label: Some("Uniform Bind Group (per draw)"),
|
||||||
|
layout: &self.render_pipeline.get_bind_group_layout(0),
|
||||||
|
entries: &[wgpu::BindGroupEntry {
|
||||||
|
binding: 0,
|
||||||
|
resource: self.uniform_buffer.as_entire_binding(),
|
||||||
|
}],
|
||||||
|
});
|
||||||
|
render_pass.set_bind_group(0, &bind_group, &[]);
|
||||||
|
// Draw 36 vertices (6 faces × 6 vertices)
|
||||||
|
render_pass.draw(0..36, 0..1);
|
||||||
|
}
|
||||||
|
|
||||||
|
self.queue.submit(Some(encoder.finish()));
|
||||||
|
surface_texture.present();
|
||||||
|
}
|
||||||
|
}
|
72
engine/src/core/render/mod.rs
Normal file
72
engine/src/core/render/mod.rs
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
use ctx::WgpuCtx;
|
||||||
|
use winit::application::ApplicationHandler;
|
||||||
|
use winit::event::WindowEvent;
|
||||||
|
use log::{debug,trace};
|
||||||
|
use winit::event_loop::{ActiveEventLoop, EventLoop};
|
||||||
|
use winit::event_loop::ControlFlow;
|
||||||
|
|
||||||
|
use winit::window::{Window, WindowId};
|
||||||
|
pub mod ctx;
|
||||||
|
|
||||||
|
|
||||||
|
#[derive(Default)]
|
||||||
|
pub struct App<'window> {
|
||||||
|
window: Option<Arc<Window>>,
|
||||||
|
ctx: Option<WgpuCtx<'window>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
impl ApplicationHandler for App<'_> {
|
||||||
|
fn resumed(&mut self, event_loop: &ActiveEventLoop) {
|
||||||
|
if self.window.is_none() {
|
||||||
|
let win_attr = Window::default_attributes().with_title("Zenyx");
|
||||||
|
let window = Arc::new(event_loop
|
||||||
|
.create_window(win_attr)
|
||||||
|
.expect("create window err."));
|
||||||
|
self.window = Some(window.clone());
|
||||||
|
let wgpu_ctx = WgpuCtx::new_blocking(window.clone()).unwrap();
|
||||||
|
self.ctx = Some(wgpu_ctx)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn window_event(
|
||||||
|
&mut self,
|
||||||
|
event_loop: &ActiveEventLoop,
|
||||||
|
_window_id: WindowId,
|
||||||
|
event: WindowEvent,
|
||||||
|
) {
|
||||||
|
match event {
|
||||||
|
WindowEvent::CloseRequested => {
|
||||||
|
event_loop.exit();
|
||||||
|
debug!("Window closed, exiting");
|
||||||
|
std::process::exit(0)
|
||||||
|
}
|
||||||
|
WindowEvent::RedrawRequested => {
|
||||||
|
if let Some(ctx) = &mut self.ctx {
|
||||||
|
ctx.draw();
|
||||||
|
}
|
||||||
|
if let Some(window) = &self.window {
|
||||||
|
window.request_redraw();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
WindowEvent::Resized(size) => {
|
||||||
|
if let (Some(wgpu_ctx),Some(window)) = (&mut self.ctx, &self.window) {
|
||||||
|
wgpu_ctx.resize(size.into());
|
||||||
|
window.request_redraw();
|
||||||
|
let size_str: String = size.height.to_string() + "x" + &size.width.to_string();
|
||||||
|
//self.window.as_ref().unwrap().set_title(&format!("you reszed the window to {size_str}"));
|
||||||
|
debug!("Window resized to {:?}", size_str);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => trace!("Unhandled window event"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn init_renderer(event_loop: EventLoop<()>) {
|
||||||
|
event_loop.set_control_flow(ControlFlow::Poll);
|
||||||
|
let mut app = App::default();
|
||||||
|
event_loop.run_app(&mut app).unwrap();
|
||||||
|
}
|
|
@ -1,9 +0,0 @@
|
||||||
pub use renderer::*;
|
|
||||||
pub use window::*;
|
|
||||||
pub use crate::core::*;
|
|
||||||
pub use material::*;
|
|
||||||
pub use effect::*;
|
|
||||||
pub use light::*;
|
|
||||||
pub use geometry::*;
|
|
||||||
pub use object::*;
|
|
||||||
pub use control::*;
|
|
|
@ -6,8 +6,11 @@ use core::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
|
use log::info;
|
||||||
use mlua::Lua;
|
use mlua::Lua;
|
||||||
|
use parking_lot::Mutex;
|
||||||
use tokio::runtime;
|
use tokio::runtime;
|
||||||
|
use winit::event_loop::EventLoop;
|
||||||
|
|
||||||
pub mod core;
|
pub mod core;
|
||||||
|
|
||||||
|
@ -23,9 +26,22 @@ fn main() -> anyhow::Result<()> {
|
||||||
runtime.block_on(async {
|
runtime.block_on(async {
|
||||||
setup();
|
setup();
|
||||||
splash::print_splash();
|
splash::print_splash();
|
||||||
COMMAND_MANAGER.read().execute("help", None)?;
|
info!("Type 'help' for a list of commands.");
|
||||||
let t = tokio::spawn(core::repl::input::handle_repl());
|
|
||||||
t.await??;
|
let repl_handle = tokio::spawn(core::repl::input::handle_repl());
|
||||||
|
let event_loop = EventLoop::new().unwrap();
|
||||||
|
|
||||||
|
core::render::init_renderer(event_loop);
|
||||||
|
|
||||||
|
|
||||||
|
// Await the REPL
|
||||||
|
if let Err(e) = repl_handle.await {
|
||||||
|
eprintln!("REPL error: {:?}", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Wait for the renderer to finish (if needed)
|
||||||
|
|
||||||
|
|
||||||
Ok::<(), anyhow::Error>(())
|
Ok::<(), anyhow::Error>(())
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue