Re: [Bf-committers] Blender Logging

2012-10-17 Thread Sergey Sharybin
I'm currently not so much convinced it'll indeed worth spending time on this now. If you really want to look into this would suggest looking into writting C wrapper for glog (C++ stuff could use glog directly). This library is already heavily used in some areas, supports lots of features and

Re: [Bf-committers] Using 'const' on primitive function arguments passed by value (Please don't do this)

2012-10-17 Thread Sergey Sharybin
In areas where you're maintainer you could stick to rules you want (only generally defined rules are [1]). In other areas you'll just stick to style used in that areas. If there're already mixed style in some files, stick to style f functions you're working and talk to module maintainer to update

Re: [Bf-committers] Gesture Recognition

2012-10-17 Thread Jason Wilkins
I had the idea that it would be nice to have sketch recognition and sketch beautification as a part of a paint stroke. You could call it a gesture brush. If you draw a square, then it would recognize it and put you in a rectangle drawing mode (similarly for a circle). That seemed a bit gimmicky

Re: [Bf-committers] Gesture Recognition

2012-10-17 Thread Jason Wilkins
A couple of other things. There is a group called the Sketch Recognition Lab here at Texas AM. If this is something that is sound and worth pursuing then I intend to take advantage of that: http://srlweb.cs.tamu.edu/srlng/home So, to be honest I'm thinking of this as a potential research area.

Re: [Bf-committers] Using 'const' on primitive function arguments passed by value (Please don't do this)

2012-10-17 Thread Jason Wilkins
If a person is allowed to make the case that somebody should use a different style as long as they are polite and open minded then I also see no problem. On Wed, Oct 17, 2012 at 2:10 AM, Sergey Sharybin sergey@gmail.com wrote: In areas where you're maintainer you could stick to rules you

Re: [Bf-committers] Blender Logging

2012-10-17 Thread Mitchell Stokes
You might run into some issues with the embedded Python. I've noticed that embedded Python doesn't always play nice with a redirected stdout. --Mitchell Stokes On Wed, Oct 17, 2012 at 7:39 AM, Jason Wilkins jason.a.wilk...@gmail.com wrote: I wasn't going to choose one particular logging

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [51368] trunk/blender/source/blender/ modifiers/intern/MOD_particlesystem.c: Fix/workaround #32846, dupli group + particle instanc

2012-10-17 Thread Antony Riakiotakis
Hi, this commit unfortunately causes hair to always render as halos in blender internal. Maybe some missing recalc flag setting? ___ Bf-committers mailing list Bf-committers@blender.org http://lists.blender.org/mailman/listinfo/bf-committers

[Bf-committers] BuildBot broken?

2012-10-17 Thread Mikee Rice
Hi guys, Win and Mac builds are not building anymore. Last builds from Sat Oct 13 Regards, Mikee Rice ___ Bf-committers mailing list Bf-committers@blender.org http://lists.blender.org/mailman/listinfo/bf-committers

Re: [Bf-committers] Compiling w/ Code Coverage

2012-10-17 Thread Campbell Barton
never used gcov, but did use valgrind for this through qtcreator / kcachegrind on linux you can see line-by-line times and callgraphs. number of calls... etc. Its really slow and at the time I didn't have much of a use for it. On Wed, Oct 17, 2012 at 7:04 AM, Jason Wilkins