[Bf-blender-cvs] [cfdd902d2d5] blender2.8: Fix debug build after recent changes.

Brecht Van Lommel noreply at git.blender.org
Thu Oct 18 15:33:05 CEST 2018


Commit: cfdd902d2d5d560262d1218861ad1a4469c5259f
Author: Brecht Van Lommel
Date:   Thu Oct 18 14:48:22 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBcfdd902d2d5d560262d1218861ad1a4469c5259f

Fix debug build after recent changes.

===================================================================

M	source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c

===================================================================

diff --git a/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c b/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c
index c9404721b76..c391ec812c7 100644
--- a/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c
+++ b/source/blender/editors/gizmo_library/gizmo_types/dial3d_gizmo.c
@@ -334,12 +334,13 @@ static void dial_ghostarc_draw_with_helplines(
 }
 
 static void dial_draw_intern(
-        wmGizmo *gz,
+        const bContext *C, wmGizmo *gz,
         const bool select, const bool highlight, float clip_plane[4])
 {
 	float matrix_final[4][4];
 	float color[4];
 
+	(void)C;
 	BLI_assert(CTX_wm_area(C)->spacetype == SPACE_VIEW3D);
 
 	gizmo_color_get(gz, highlight, color);
@@ -403,7 +404,7 @@ static void gizmo_dial_draw_select(const bContext *C, wmGizmo *gz, int select_id
 	}
 
 	GPU_select_load_id(select_id);
-	dial_draw_intern(gz, true, false, clip_plane);
+	dial_draw_intern(C, gz, true, false, clip_plane);
 
 	if (clip_plane) {
 		glDisable(GL_CLIP_DISTANCE0);
@@ -428,7 +429,7 @@ static void gizmo_dial_draw(const bContext *C, wmGizmo *gz)
 	}
 
 	GPU_blend(true);
-	dial_draw_intern(gz, false, is_highlight, clip_plane);
+	dial_draw_intern(C, gz, false, is_highlight, clip_plane);
 	GPU_blend(false);
 }



More information about the Bf-blender-cvs mailing list