[Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread James Wrigley
Just tested the script on Fedora 17 64bit with cmake. The script runs fine and I got this message after it finished: If you're using CMake add this to your configuration flags: -D WITH_CODEC_FFMPEG=ON -D FFMPEG=/opt/lib/ffmpeg -D FFMPEG_LIBRARIES='avformat;avcodec;avutil;avdevice;swscale;' I

Re: [Bf-committers] Triangulate modifier

2012-11-13 Thread Brecht Van Lommel
Tessfaces contain both quads and triangles. The render engine can store quads natively (uses less memory) and has its own splitting algorithm which is different than what OpenGL does. Perhaps it would not be a bad thing to add an option to Mesh datablocks to disable that smart render engine splitti

Re: [Bf-committers] Triangulate modifier

2012-11-13 Thread CoDEmanX
Alright, maybe what i had on mind isn't possible in your case. As Blender has a tessface cache, I thought it should be used throughout the application for everything that requires tessellated mesh geometry. Polygon and tessface data can be accessed at the same time, so this is basically non-des

Re: [Bf-committers] Triangulate modifier

2012-11-13 Thread metalliandy
The point of the modifier is not how it is triangulated, it is that the triangulation is non destructive and can be visibly toggled on and off by the user at will and without the need for undo steps :) Also that quote you was from me, not Morten and I was 100% accurate. Morten replied and said

Re: [Bf-committers] Triangulate modifier

2012-11-13 Thread CoDEmanX
Sounds to me like there is an inconsistency somewhere in Blender, which causes the difference in mesh geometry between what baker uses and the stored/exported data... Shouldn't everything in Blender use tessfaces, if triangles are required? "When baking with an all quad mesh, the triangulation

Re: [Bf-committers] ./install_deps.sh on ubuntu

2012-11-13 Thread Bastien Montagne
Yes, CMake already has /opt/lib/ocio/oiio in its search paths… On 13/11/2012 20:43, INTERLICHTSPIELHAUS wrote: > hi > > i tried the new libs build script install_deps.sh on ubuntu 12.04 ( 32 bit ) > > i get the following output at the end > > > If you're using CMake add this to your configuration

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Bastien Montagne
Yes, already added WITH_CODEC_FFMPEG=ON... @Julien: escaped the '/' in char class, should work now! On 13/11/2012 18:50, Julien Duroure wrote: > Works now for me on ubuntu 12.04 ( merci Bastien ! ), except for displaying > flags to set : > > If you're using CMake add this to your configuration fl

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Julien Duroure
Works now for me on ubuntu 12.04 ( merci Bastien ! ), except for displaying flags to set : If you're using CMake add this to your configuration flags: -D WITH_CODEC_FFMPEG=ON -D FFMPEG=/opt/lib/ffmpeg awk: line 1: regular expression compile failed (bad class -- [], [^] or [) .*lib([^ awk: line

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Sergey Sharybin
Linking errors should have been solved with recent Bastien's commit which should make script displaying extra libraries blender should be linked against (using FFMPEG_LIBRARIES for cmake nd something familiar for scons). Perhaps you're right with with suggesting set -DWITH_FFMPEG to truth. as per

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Xavier Thomas
Also it created a (temporary?) "src" directory in my user home an left it there. Maybe using /tmp is better, what is I already had a src directory in my home? 2012/11/13 Xavier Thomas > Hello, > > The dependencies build fine on Debian with apt pinning but mostly testing. > > Some problems thou

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Xavier Thomas
Hello, The dependencies build fine on Debian with apt pinning but mostly testing. Some problems though: First, after compiling the dependencies it suggest: If you're using CMake add this to your configuration flags: -D FFMPEG=/opt/lib/ffmpeg If you're using SCons add this to your user-config:

Re: [Bf-committers] Replacement for pre-compiled Linux libraries

2012-11-13 Thread Sergey Sharybin
I've made some tweaks to the script, so now dependencies should be compiling fine for openSuSE. On Tue, Nov 13, 2012 at 12:28 PM, Bastien Montagne wrote: > Fixed the issue with boost (note you'll have to erase your > opt/lib/boost-1.51.0 dir before re-running the script). > > There is also a pro