| 123456789101112131415161718 |
- //
- // shader_program.hpp
- // graphics
- //
- // Created by Sam Jaffe on 7/5/16.
- //
- #pragma once
- #include "util/identity.hpp"
- namespace graphics {
- class program : public identity<program> {
- public:
- private:
- program(unsigned int);
- };
- }
|