#graphics-engine #gl #glfw #cgmath #kart-apple

yanked KartApple-GL

a graphics engine using gl, glfw, and cgmath

1 unstable release

0.3.0 Sep 11, 2023

#13 in #cgmath

MIT license

69KB
527 lines

KartApple-GL

KartApple icon

Rust opengl library for creating whatever you want in opengl!

Goals

  • Lightweight
  • Flexible for general purpose graphics
  • Easy to use for beginners
fn main() {
    unsafe {
        let mut app = Kartappl::new(700, 500, "KartApple-GL");
        app.init();
        gl::Enable(gl::DEPTH_TEST);

        let mut program = GLuint::from(1u32);
        let vert_code = include_str!("../shaders/vert.glsl").to_string();
        let frag_code = include_str!("../shaders/frag.glsl").to_string();

        program = ProgramUtils::create_program(&vert_code, &frag_code);

        app.set_program(program);
        
        //...
    } 
}

Picture_of_3D_cube.png

Requirements

  • must have cmake installed for glfw
sudo apt install cmake
choco install cmake

Quick Start

Dependencies

~2.5MB
~54K SLoC