[Bf-blender-cvs] [693ecdf7d3a] blender2.8: Fix build error due to missing file from commit 98c304e865f8.

Brecht Van Lommel noreply at git.blender.org
Fri Aug 10 14:41:03 CEST 2018


Commit: 693ecdf7d3adcef00b26e7f7d52856440ec980e1
Author: Brecht Van Lommel
Date:   Fri Aug 10 14:30:27 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB693ecdf7d3adcef00b26e7f7d52856440ec980e1

Fix build error due to missing file from commit 98c304e865f8.

Proper contents still needs to be added, this just makes things build.

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

A	source/blender/editors/gizmo_library/gizmo_types/blank3d_gizmo.c
M	source/blender/editors/include/ED_gizmo_library.h

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

diff --git a/source/blender/editors/gizmo_library/gizmo_types/blank3d_gizmo.c b/source/blender/editors/gizmo_library/gizmo_types/blank3d_gizmo.c
new file mode 100644
index 00000000000..4dcdb7b7b3f
--- /dev/null
+++ b/source/blender/editors/gizmo_library/gizmo_types/blank3d_gizmo.c
@@ -0,0 +1,42 @@
+/*
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * The Original Code is Copyright (C) 2014 Blender Foundation.
+ * All rights reserved.
+ *
+ * Contributor(s): Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#include "BLI_math.h"
+
+#include "BKE_context.h"
+
+#include "ED_view3d.h"
+#include "ED_gizmo_library.h"
+
+#include "WM_types.h"
+#include "WM_api.h"
+
+/* own includes */
+#include "../gizmo_geometry.h"
+#include "../gizmo_library_intern.h"
+
+void ED_gizmotypes_blank_3d(void)
+{
+}
diff --git a/source/blender/editors/include/ED_gizmo_library.h b/source/blender/editors/include/ED_gizmo_library.h
index 6471c90194b..41488baa964 100644
--- a/source/blender/editors/include/ED_gizmo_library.h
+++ b/source/blender/editors/include/ED_gizmo_library.h
@@ -42,6 +42,9 @@ void ED_gizmotypes_facemap_3d(void);
 void ED_gizmotypes_primitive_3d(void);
 void ED_gizmotypes_blank_3d(void);
 
+struct bContext;
+struct Object;
+struct Scene;
 struct wmGizmo;
 struct wmGizmoGroup;



More information about the Bf-blender-cvs mailing list