| 64 | : gl_canvas_{gl_canvas} {} |
| 65 | |
| 66 | ShaderProgram::~ShaderProgram() noexcept { |
| 67 | gl_canvas_.glDeleteProgram(program_); |
| 68 | } |
| 69 | |
| 70 | bool ShaderProgram::is_shader_outdated(const TexelChannels texel_format, |
| 71 | const std::vector<std::string>& uniforms, |
nothing calls this directly
no test coverage detected