Merge pull request #2836 from AndrewMeadows/inertia

add missing glPushMatrix() in Hand::render()
This commit is contained in:
Brad Hefta-Gaub 2014-05-12 14:21:58 -07:00
commit 9cbb3e5be4

View file

@ -162,9 +162,9 @@ void Hand::render(bool isMine, Model::RenderMode renderMode) {
}
void Hand::renderHandTargets(bool isMine) {
glPushMatrix();
const float alpha = 1.0f;
const glm::vec3 handColor(1.0, 0.0, 0.0); // Color the hand targets red to be different than skin
glEnable(GL_DEPTH_TEST);