Working on rendering side now

This commit is contained in:
Evan Pratten 2022-03-21 16:42:46 -04:00
parent 047b818e1a
commit fc7ddb78b7
6 changed files with 25 additions and 1 deletions

View File

@ -2,6 +2,7 @@
"git.detectSubmodules": false,
"cSpell.words": [
"msaa",
"repr",
"vsync"
],
"files.watcherExclude": {

0
game/dist/shaders/texture_render.fs vendored Normal file
View File

View File

@ -1,3 +1,4 @@
//! This module contains lower level rendering logic.
pub mod event_loop;
pub mod event_loop;
pub mod utilities;

View File

@ -0,0 +1,2 @@
pub mod vram_anim;
pub mod size_mismatch;

View 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,
}

View 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 {}
}
}