From 4db0f513538d9f2c11e5ebc6fd7ca06c7fdf6993 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 29 May 2013 11:30:28 +0000 Subject: [PATCH] fix last commit --- Graphics/drawContext.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Graphics/drawContext.cpp b/Graphics/drawContext.cpp index e456beef83..86c7a6670f 100644 --- a/Graphics/drawContext.cpp +++ b/Graphics/drawContext.cpp @@ -836,16 +836,16 @@ bool drawContext::select(int type, bool multiple, bool mesh, // for triangle, 4 for quad) and the fourth is the index of the element in // the vertex array GLuint names = *ptr++; - ptr++; // mindepth + GLuint mindepth = *ptr++; GLuint maxdepth = *ptr++; if(names == 2){ - GLuint depth = maxdepth; + GLuint depth = maxdepth + 0 * mindepth; // could do something with mindepth GLuint type = *ptr++; GLuint ient = *ptr++; hits.push_back(hit(type, ient, depth)); } else if(names == 4){ - GLuint depth = maxdepth; + GLuint depth = maxdepth+ 0 * mindepth; // could do something with mindepth GLuint type = *ptr++; GLuint ient = *ptr++; GLuint type2 = *ptr++; -- GitLab