Rename crate folders to remove raidillon prefix
This commit is contained in:
parent
176ea52ab0
commit
3458662cfc
29 changed files with 31 additions and 28 deletions
11
glium_platform/src/render/basic.rs
Normal file
11
glium_platform/src/render/basic.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use crate::RenderingSystem;
|
||||
use crate::system::RenderingContext;
|
||||
|
||||
/// A basic renderer pipeline step.
|
||||
pub struct BasicRenderingSystem;
|
||||
|
||||
impl RenderingSystem for BasicRenderingSystem {
|
||||
fn render(&mut self, ctx: &mut RenderingContext) {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
2
glium_platform/src/render/mod.rs
Normal file
2
glium_platform/src/render/mod.rs
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
mod basic;
|
||||
pub use basic::BasicRenderingSystem;
|
||||
Loading…
Add table
Add a link
Reference in a new issue