pubmodpipelines;pubmodrender_engine;pubmodrender_utils;/// A useful matrix for converting opengl matrices to WGPU matrices. Used in rendering to make our lives easy.
#[rustfmt::skip]pubconstOPENGL_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,);