Working on rendering side now
This commit is contained in:
parent
047b818e1a
commit
fc7ddb78b7
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
@ -2,6 +2,7 @@
|
||||
"git.detectSubmodules": false,
|
||||
"cSpell.words": [
|
||||
"msaa",
|
||||
"repr",
|
||||
"vsync"
|
||||
],
|
||||
"files.watcherExclude": {
|
||||
|
0
game/dist/shaders/texture_render.fs
vendored
Normal file
0
game/dist/shaders/texture_render.fs
vendored
Normal file
@ -1,3 +1,4 @@
|
||||
//! This module contains lower level rendering logic.
|
||||
|
||||
pub mod event_loop;
|
||||
pub mod utilities;
|
@ -0,0 +1,2 @@
|
||||
pub mod vram_anim;
|
||||
pub mod size_mismatch;
|
9
game/game_logic/src/rendering/utilities/size_mismatch.rs
Normal file
9
game/game_logic/src/rendering/utilities/size_mismatch.rs
Normal file
@ -0,0 +1,9 @@
|
||||
/// The policy for how to handle rendering a small frame on a big texture
|
||||
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Clone, PartialEq, Copy)]
|
||||
pub enum TextureSizeMismatchRenderPolicy {
|
||||
TopLeft,
|
||||
Center,
|
||||
}
|
||||
|
11
game/game_logic/src/rendering/utilities/vram_anim.rs
Normal file
11
game/game_logic/src/rendering/utilities/vram_anim.rs
Normal file
@ -0,0 +1,11 @@
|
||||
use raylib::texture::Texture2D;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct VramAnimTexture {}
|
||||
|
||||
impl VramAnimTexture {
|
||||
/// Construct a new `VramAnimTexture`
|
||||
pub fn new(texture: Texture2D) -> Self {
|
||||
Self {}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user