Files
hyprland/src/render/Shader.cpp
2022-11-01 18:46:51 +00:00

18 lines
419 B
C++

#include "Shader.hpp"
GLint CShader::getUniformLocation(const std::string& unif) {
const auto itpos = m_muUniforms.find(unif);
if (itpos == m_muUniforms.end()) {
const auto unifLoc = glGetUniformLocation(program, unif.c_str());
m_muUniforms[unif] = unifLoc;
return unifLoc;
}
return itpos->second;
}
CShader::~CShader() {
// destroy shader
glDeleteProgram(program);
}