tinyrenderer/src/shader/shaders.h

14 lines
249 B
C

#ifndef SHADERS_H
#define SHADERS_H
#include "shader.h"
extern ShaderID perspective_phong;
extern ShaderID perspective_albedo;
extern ShaderID orthographic_phong;
extern ShaderID orthographic_albedo;
void load_shaders(void);
#endif // SHADERS_H