Added a few missing glsafe()

This commit is contained in:
enricoturri1966
2021-08-02 14:40:13 +02:00
parent 9750701f43
commit 2a64bd9cf4
2 changed files with 9 additions and 9 deletions

View File

@@ -499,10 +499,10 @@ void Bed3D::render_model() const
if (shader != nullptr) {
shader->start_using();
shader->set_uniform("emission_factor", 0.0);
::glPushMatrix();
::glTranslated(m_model_offset.x(), m_model_offset.y(), m_model_offset.z());
glsafe(::glPushMatrix());
glsafe(::glTranslated(m_model_offset.x(), m_model_offset.y(), m_model_offset.z()));
model->render();
::glPopMatrix();
glsafe(::glPopMatrix());
shader->stop_using();
}
}