Merge pull request #2569 from BeldrothTheGold/master

Add debug preprocessor directive in Technologies.hpp to render picking pass to window.
This commit is contained in:
enricoturri1966 2019-06-27 09:44:48 +02:00 committed by GitHub
commit d16c670ed1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

View file

@ -15,6 +15,8 @@
#define ENABLE_RENDER_STATISTICS 0
// Shows an imgui dialog with camera related data
#define ENABLE_CAMERA_STATISTICS 0
// Render the picking pass instead of the main scene
#define ENABLE_RENDER_PICKING_PASS 0
//====================

View file

@ -1627,6 +1627,7 @@ void GLCanvas3D::render()
_picking_pass();
}
#if !ENABLE_RENDER_PICKING_PASS
// draw scene
glsafe(::glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT));
_render_background();
@ -1656,6 +1657,7 @@ void GLCanvas3D::render()
_render_current_gizmo();
_render_selection_sidebar_hints();
#endif // !ENABLE_RENDER_PICKING_PASS
#if ENABLE_SHOW_CAMERA_TARGET
_render_camera_target();

View file

@ -259,6 +259,10 @@ void GLGizmoSlaSupports::render_clipping_plane(const Selection& selection) const
void GLGizmoSlaSupports::on_render_for_picking(const Selection& selection) const
{
#if ENABLE_RENDER_PICKING_PASS
m_z_shift = selection.get_volume(*selection.get_volume_idxs().begin())->get_sla_shift_z();
#endif
glsafe(::glEnable(GL_DEPTH_TEST));
render_points(selection, true);
}