From 7878adf49cfff6ccbb18203f21c6355a518b34db Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Tue, 10 Dec 2019 15:18:16 +0100 Subject: DrawManager: Disable Clipping in material/rendered mode Viewport: Disable Clipping For EEVEE and External Renderers Currently it is possible that, when using viewport clipping, the display and tools communicate different information to the user then the renderer does. The reason is that the renderer does not support viewport clipping. Both EEVEE and Cycles do not support it. This patch will disable the clipping in all the tools and drawing code when the viewport drawing mode is `Material Preview` or `Rendered`. This patch introduces a `RV3D_CLIPPING_ENABLED` util that checks if clipping is enabled for the given `rv3d` and `v3d`. Also in places where it was needed we added the `ViewContext` as a carrier for the `View3D` and `RegionView3D`. There are a few areas in the tooling (select, projection painting) that still needs to be tackled after this patch. Reviewed By: fclem Differential Revision: https://developer.blender.org/D6047 --- source/blender/blenkernel/BKE_paint.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/blenkernel/BKE_paint.h') diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h index 536268c067e..fdd3bd7cd86 100644 --- a/source/blender/blenkernel/BKE_paint.h +++ b/source/blender/blenkernel/BKE_paint.h @@ -265,7 +265,10 @@ typedef struct SculptSession { float cursor_location[3]; float cursor_normal[3]; float cursor_view_normal[3]; + + /* TODO(jbakker): Replace rv3d adn v3d with ViewContext */ struct RegionView3D *rv3d; + struct View3D *v3d; /* Dynamic mesh preview */ int *preview_vert_index_list; -- cgit v1.2.3