1
0
Fork 0

Migrate to tutorial 13 / threading

This commit is contained in:
Florian RICHER 2022-06-19 12:42:19 +02:00
parent fe8a47d14d
commit 6f68444dc7
43 changed files with 4085 additions and 1163 deletions

View file

@ -1,29 +0,0 @@
mod vertex;
pub use vertex::Vertex;
mod camera;
pub use camera::Camera;
mod texture;
pub use texture::{Texture, TextureManager};
mod instance;
pub use instance::{
Instance, InstanceRaw
};
use wgpu::{Device, Queue};
mod mesh;
pub use mesh::Mesh;
mod window;
pub use window::Window;
mod pipelines;
pub trait Renderable {
fn initialize(&mut self, device: &Device);
fn update_instances(&mut self, queue: &Queue);
fn prepare<'a>(&'a self, render_pass: &mut wgpu::RenderPass<'a>);
fn draw<'a>(&'a self, render_pass: &mut wgpu::RenderPass<'a>);
}