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