forte_engine 0.2.3

A core for a basic render/game engine designed to have little overhead.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod pipelines;
pub mod render_engine;
pub mod render_utils;

/// A useful matrix for converting opengl matrices to WGPU matrices.  Used in rendering to make our lives easy.
#[rustfmt::skip]
pub const OPENGL_TO_WGPU_MATRIX: cgmath::Matrix4<f32> = cgmath::Matrix4::new(
    1.0, 0.0, 0.0, 0.0,
    0.0, 1.0, 0.0, 0.0,
    0.0, 0.0, 0.5, 0.5,
    0.0, 0.0, 0.0, 1.0,
);