[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31124] branches/soc-2010-nicolasbishop/ source/blender: == Paint ==

Nicholas Bishop nicholasbishop at gmail.com
Fri Aug 6 22:04:37 CEST 2010


Revision: 31124
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31124
Author:   nicholasbishop
Date:     2010-08-06 22:04:37 +0200 (Fri, 06 Aug 2010)

Log Message:
-----------
== Paint ==

* Missed a few things in my last commit

Modified Paths:
--------------
    branches/soc-2010-nicolasbishop/source/blender/editors/include/ED_sculpt.h
    branches/soc-2010-nicolasbishop/source/blender/makesdna/DNA_scene_types.h

Modified: branches/soc-2010-nicolasbishop/source/blender/editors/include/ED_sculpt.h
===================================================================
--- branches/soc-2010-nicolasbishop/source/blender/editors/include/ED_sculpt.h	2010-08-06 19:51:23 UTC (rev 31123)
+++ branches/soc-2010-nicolasbishop/source/blender/editors/include/ED_sculpt.h	2010-08-06 20:04:37 UTC (rev 31124)
@@ -32,6 +32,7 @@
 struct bContext;
 struct MultiresModifierData;
 struct Object;
+struct PaintOverlay;
 struct RegionView3D;
 struct Scene;
 struct wmKeyConfig;
@@ -66,6 +67,6 @@
 
 /* paint_vertex.c */
 void ED_paint_overlay_draw(const struct bContext *C, struct ARegion *ar);
-void ED_paint_update_overlay(struct Object *ob);
+void ED_paint_update_overlay(struct PaintOverlay *overlay);
 
 #endif

Modified: branches/soc-2010-nicolasbishop/source/blender/makesdna/DNA_scene_types.h
===================================================================
--- branches/soc-2010-nicolasbishop/source/blender/makesdna/DNA_scene_types.h	2010-08-06 19:51:23 UTC (rev 31123)
+++ branches/soc-2010-nicolasbishop/source/blender/makesdna/DNA_scene_types.h	2010-08-06 20:04:37 UTC (rev 31124)
@@ -613,6 +613,8 @@
 	VPaint *vpaint;		/* vertex paint */
 	VPaint *wpaint;		/* weight paint */
 	Sculpt *sculpt;
+
+	struct PaintOverlay paint_overlay;
 	
 	/* Vertex groups */
 	float vgroup_weight;





More information about the Bf-blender-cvs mailing list