| 58 | } |
| 59 | |
| 60 | int8_t GLGpuProgram::GetUniformLocation(std::string const & uniformName) const |
| 61 | { |
| 62 | auto const it = m_uniforms.find(uniformName); |
| 63 | if (it == m_uniforms.end()) |
| 64 | return -1; |
| 65 | |
| 66 | return it->second.m_location; |
| 67 | } |
| 68 | |
| 69 | glConst GLGpuProgram::GetUniformType(std::string const & uniformName) const |
| 70 | { |
no test coverage detected