1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-27 10:35:51 +00:00

Small optimization

This commit is contained in:
Enrico Turri
2019-04-25 15:08:14 +02:00
parent 905673f344
commit 36252a42da
+9 -6
View File
@@ -1617,12 +1617,15 @@ void GLCanvas3D::render()
wxGetApp().imgui()->new_frame(); wxGetApp().imgui()->new_frame();
if (m_rectangle_selection.is_dragging()) if (m_picking_enabled)
// picking pass using rectangle selection {
_rectangular_selection_picking_pass(); if (m_rectangle_selection.is_dragging())
else // picking pass using rectangle selection
// regular picking pass _rectangular_selection_picking_pass();
_picking_pass(); else
// regular picking pass
_picking_pass();
}
// draw scene // draw scene
glsafe(::glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); glsafe(::glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT));