Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52084] trunk/blender/source/gameengine: bge mesh conversion speedup, avoid calling ConvertMaterial() on every face .

2012-11-11 Thread Mitchell Stokes
If you wanted to eliminate per face material conversion, you could have also looked at my Swiss patch: https://codereview.appspot.com/6446043/ This is one of the things I worked on. However, now there will be some serious conflicts with my patch. I can probably salvage the async lib load code,

[Bf-committers] Blender developer meeting minutes - 11 november 2012

2012-11-11 Thread Ton Roosendaal
Hi all, Here's the notes from today's meeting in irc.freenode.net #blendercoders 1) Blender 2.65 release status - UI translations: Bastien Montagne tested boost::locale, it works much better than our current gettext library. Meeting agrees on removing gettext/iconv and have the i8n module use

Re: [Bf-committers] Blender developer meeting minutes - 11 november 2012

2012-11-11 Thread Thomas Dinges
For OpenCL, set the environment variable CYCLES_OPENCL_TEST . Am 11.11.2012 16:43, schrieb Ton Roosendaal: - OpenCL support for Cycles will be still on hold, and not part of release. You can compile it by setting CYCLES_TEST. -- Thomas Dinges Blender Developer, Artist and Musician

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52096] trunk/blender/source/blender: Dynamic Sketch patch, which adds timing data to GP strokes, by storing an inittime in eac

2012-11-11 Thread Bastien Montagne
Gah... Forgot to thanks Aligorith for his review work, sorry! On 11/11/2012 15:48, Bastien Montagne wrote: Revision: 52096 http://projects.blender.org/scm/viewvc.php?view=revroot=bf-blenderrevision=52096 Author: mont29 Date: 2012-11-11 14:48:58 + (Sun, 11 Nov 2012) Log

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52106] trunk/blender: Replacing gettext i18n backend by boost::locale one.

2012-11-11 Thread Bastien Montagne
And again, forgot to say thanks to Sergey for testing and review! G… I should invest in a brain/memory upgrade! On 11/11/2012 17:54, Bastien Montagne wrote: Revision: 52106 http://projects.blender.org/scm/viewvc.php?view=revroot=bf-blenderrevision=52106 Author: mont29

[Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52106] trunk/blender: Replacing gettext i18n backend by boost::locale one.

2012-11-11 Thread James Wrigley
I think this commit may have broken compiling, I get this error after an svn up just now (I updated the /libs as well): http://www.pasteall.org/37116/text. I'm Fedora 17 64bit, compiling with cmake. Thanks, JamesNZ ___ Bf-committers mailing list

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52106] trunk/blender: Replacing gettext i18n backend by boost::locale one.

2012-11-11 Thread Bastien Montagne
Evening James, Yes, the static libs for linux are not working for now (looks like they miss icu - even though they should not need it :/). Anyway, we'll have to wait for sergey tomorrow, he is the linux libs maintainer. In the mean time, you can either build without WITH_INTERNATIONAL, or

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52106] trunk/blender: Replacing gettext i18n backend by boost::locale one.

2012-11-11 Thread Sergey Sharybin
Well, it seems to be an issue with precompiled libboost_locale library. In theoty it's solvable by providing libicu libraries in svn as well, but i wouldn't do this. I will get rid of precompiled libraries pretty soon and will provide a script which will build all libraries we've got in svn. That

Re: [Bf-committers] Blender developer meeting minutes - 11 november 2012

2012-11-11 Thread Thomas Dinges
Hi, OIIO 1.1.0 needs some compile fixes on msvc 2008. Nothing major, some includes and macros fail... We can also stick with OIIO 1.1 beta1 for now (which works) and is compatible with OSL too (at least on Linux and Mac it was) Regards, Thomas Am 11.11.2012 16:43, schrieb Ton Roosendaal: -

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52084] trunk/blender/source/gameengine: bge mesh conversion speedup, avoid calling ConvertMaterial() on every face .

2012-11-11 Thread Campbell Barton
Hi Mitchell, I wasn't aware your patch addressed this issue of in-efficient BGE-per-face-material conversion, I have no problems with reverting my commit to avoid conflicts so your patch can be applied instead (if its resolving more issues is stable). But I think shows some issues in BGE

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52130] trunk/blender: build fix: recent commit broke building on 64bit linux

2012-11-11 Thread Daniel Salazar - 3Developer.com
Hi Cambo, Unfortunately building is still failing here http://www.pasteall.org/37134 Daniel Salazar patazstudio.com On Sun, Nov 11, 2012 at 9:37 PM, Campbell Barton ideasma...@gmail.comwrote: Revision: 52130 http://projects.blender.org/scm/viewvc.php?view=revroot=bf-blenderrevision=52130

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52130] trunk/blender: build fix: recent commit broke building on 64bit linux

2012-11-11 Thread Joshua Leung
Hi Cambo, Unfortunately, by reverting the fix, you've now re-broken compiling on 32 bit windows On Mon, Nov 12, 2012 at 4:56 PM, Daniel Salazar - 3Developer.com zan...@gmail.com wrote: Hi Cambo, Unfortunately building is still failing here http://www.pasteall.org/37134 Daniel Salazar

[Bf-committers] DNA_scene_types.h in Freestyle branch

2012-11-11 Thread IRIE Shinsuke
Tamito, please check lines 1204-1205 in source/blender/makesdna/DNA_scene_types.h: #define R_PERSISTENT_DATA 0x200 /* keep data around for re-render */ #define R_EDGE_FRS 0x200 /* R_EDGE for Freestyle */ The flags R_PERSISTENT_DATA and R_EDGE_FRS use the same bit

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52130] trunk/blender: build fix: recent commit broke building on 64bit linux

2012-11-11 Thread Bastien Montagne
Hi Daniel, You are probably using your distrib's boost libs? In this case, you have to install boost-locale-dev package as well… ;) On 12/11/2012 04:56, Daniel Salazar - 3Developer.com wrote: Hi Cambo, Unfortunately building is still failing here http://www.pasteall.org/37134 Daniel