summaryrefslogblamecommitdiff
path: root/source/dw/app.rs
blob: 14b22921cd18d9e490fd44344fa5c1a37463daa4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                 
                      
                                    
                                  


                              



                                            




                


                                                       

               
               
            
            
// Copyright 2023 Gabriel Jensen.

extern crate glfw;

use gl::types::GLuint;
use glfw::{Glfw,Window,WindowEvent};
use std::sync::atomic::AtomicBool;
use std::sync::mpsc::Receiver;

pub struct Gfx {
	evt:    Receiver<(f64,WindowEvent)>,
	glfw:   Glfw,
	shdprg: GLuint,
	win:    Window,
}

pub struct App {
}

static mut GOTINT: AtomicBool = AtomicBool::new(false);

pub mod getshdprg;
pub mod ini;
pub mod inigfx;
pub mod inisig;
pub mod lop;
pub mod new;