| 454 | } |
| 455 | |
| 456 | void Program::updateUniforms() const |
| 457 | { |
| 458 | // Note: uniform update will check if program is linked |
| 459 | for (const auto & uniformPair : m_uniforms) |
| 460 | { |
| 461 | uniformPair.second->update(this, true); |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | void Program::updateUniformBlockBindings() const |
| 466 | { |