MOS
depth_program.hpp
1 #pragma once
2 
3 #include <glad/glad.h>
4 
5 namespace mos::gl {
6 
7 class Depth_program : public Program {
8  friend class Renderer;
9 private:
10  Depth_program();
11 public:
12  GLint model_view_projection;
13  GLint albedo_sampler;
14  GLint albedo;
15  GLint emission;
16 };
17 }
Definition: depth_program.hpp:7
Definition: program.hpp:7
Definition: array_buffers.hpp:5
Render geometry shapes with OpenGL.
Definition: renderer.hpp:40