fast-nuclear-sim/src/graphics/shader.hpp

17 lines
203 B
C++
Raw Normal View History

2024-01-21 01:36:21 +11:00
#pragma once
2024-02-16 18:09:00 +11:00
namespace Sim::Graphics::Shader
2024-01-21 01:36:21 +11:00
{
2024-01-21 12:58:37 +11:00
extern int gl_tex_mat;
2024-01-21 22:33:55 +11:00
extern int gl_model;
extern int gl_camera;
2024-01-21 22:33:55 +11:00
extern int gl_projection;
2024-02-20 16:48:01 +11:00
extern int gl_brightness;
2024-01-21 12:58:37 +11:00
2024-01-21 01:36:21 +11:00
unsigned int init_program();
};