[Bf-committers] Octree.cpp

2011-12-31 Thread Peter K.H. Gragert
Hi Johann,
did you put octree.cpp into the trunk? or some else you know?

See this
[ 81%] Building CXX object
intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/intern/octree.cpp.obj
In file included from
C:\BlenderSVN\blender\intern\dualcon\intern\/octree.h:29:0,
 from
C:\BlenderSVN\blender\intern\dualcon\intern\octree.cpp:23:
C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:58:2: error:
'int64_t' does not name a type
C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:61:2: error:
'int64_t' does not name a type
C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:64:2: error:
'int64_t' does not name a type
C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:93:2: error:
'int64_t' does not name a type
C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:105:20: error:
expected ')' before 'cube'
In file included from
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/ios:40:0,
 from
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/istream:40,
 from
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/sstream:39,
 from
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/complex:47,
 from C:\BlenderSVN\blender\extern\Eigen3/Eigen/Core:149,
 from C:\BlenderSVN\blender\extern\Eigen3/Eigen/Dense:1,
 from
C:\BlenderSVN\blender\intern\dualcon\intern\octree.cpp:24:
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
expected '}' before end of line
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
expected unqualified-id before end of line
c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
expected declaration before end of line
mingw32-make[2]: ***
[intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/intern/octree.cpp.obj]
Error 1
mingw32-make[1]: *** [intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/all]
Error 2
mingw32-make: *** [all] Error 2
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43027] trunk/blender/source/blender/ blenkernel/intern/tracking.c: Minor code cleanup after resolving conflicts

2011-12-31 Thread Campbell Barton
You shouldn't need to test both isnan and finite, testing only
finite() will be false for both inf and nan values.

On Sat, Dec 31, 2011 at 8:30 PM, Sergey Sharybin sergey@gmail.com wrote:
 Revision: 43027
          
 http://projects.blender.org/scm/viewvc.php?view=revroot=bf-blenderrevision=43027
 Author:   nazgul
 Date:     2011-12-31 09:30:39 + (Sat, 31 Dec 2011)
 Log Message:
 ---
 Minor code cleanup after resolving conflicts

 Modified Paths:
 --
    trunk/blender/source/blender/blenkernel/intern/tracking.c

 Modified: trunk/blender/source/blender/blenkernel/intern/tracking.c
 ===
 --- trunk/blender/source/blender/blenkernel/intern/tracking.c   2011-12-31 
 09:29:49 UTC (rev 43026)
 +++ trunk/blender/source/blender/blenkernel/intern/tracking.c   2011-12-31 
 09:30:39 UTC (rev 43027)
 @@ -1377,7 +1377,7 @@
                                MEM_freeN(image_new);
                        }

 -                       coords_correct= !onbound  !isnan(x2)  !isnan(y2) 
  finite(x2)  finite(y2);
 +                       coords_correct= !isnan(x2)  !isnan(y2)  
 finite(x2)  finite(y2);
                        if(coords_correct  !onbound  tracked) {
                                if(context-first_time) {
                                        #pragma omp critical

 ___
 Bf-blender-cvs mailing list
 bf-blender-...@blender.org
 http://lists.blender.org/mailman/listinfo/bf-blender-cvs



-- 
- Campbell
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43027] trunk/blender/source/blender/ blenkernel/intern/tracking.c: Minor code cleanup after resolving conflicts

2011-12-31 Thread Sergey Sharybin
Hi,

Wasn't sure about this. Thanks for the info :)
Fix is in svn now.

On Sat, Dec 31, 2011 at 4:55 PM, Campbell Barton ideasma...@gmail.comwrote:

 You shouldn't need to test both isnan and finite, testing only
 finite() will be false for both inf and nan values.

 On Sat, Dec 31, 2011 at 8:30 PM, Sergey Sharybin sergey@gmail.com
 wrote:
  Revision: 43027
 
 http://projects.blender.org/scm/viewvc.php?view=revroot=bf-blenderrevision=43027
  Author:   nazgul
  Date: 2011-12-31 09:30:39 + (Sat, 31 Dec 2011)
  Log Message:
  ---
  Minor code cleanup after resolving conflicts
 
  Modified Paths:
  --
 trunk/blender/source/blender/blenkernel/intern/tracking.c
 
  Modified: trunk/blender/source/blender/blenkernel/intern/tracking.c
  ===
  --- trunk/blender/source/blender/blenkernel/intern/tracking.c
 2011-12-31 09:29:49 UTC (rev 43026)
  +++ trunk/blender/source/blender/blenkernel/intern/tracking.c
 2011-12-31 09:30:39 UTC (rev 43027)
  @@ -1377,7 +1377,7 @@
 MEM_freeN(image_new);
 }
 
  -   coords_correct= !onbound  !isnan(x2) 
 !isnan(y2)  finite(x2)  finite(y2);
  +   coords_correct= !isnan(x2)  !isnan(y2) 
 finite(x2)  finite(y2);
 if(coords_correct  !onbound  tracked) {
 if(context-first_time) {
 #pragma omp critical
 
  ___
  Bf-blender-cvs mailing list
  bf-blender-...@blender.org
  http://lists.blender.org/mailman/listinfo/bf-blender-cvs



 --
 - Campbell
 ___
 Bf-committers mailing list
 Bf-committers@blender.org
 http://lists.blender.org/mailman/listinfo/bf-committers




-- 
With best regards, Sergey Sharybin
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] Octree.cpp

2011-12-31 Thread Sergey Sharybin
Hi,

Should be fixed now

On Sat, Dec 31, 2011 at 4:31 PM, Peter K.H. Gragert pkhgrag...@gmail.comwrote:

 Hi Johann,
 did you put octree.cpp into the trunk? or some else you know?

 See this
 [ 81%] Building CXX object
 intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/intern/octree.cpp.obj
 In file included from
 C:\BlenderSVN\blender\intern\dualcon\intern\/octree.h:29:0,
 from
 C:\BlenderSVN\blender\intern\dualcon\intern\octree.cpp:23:
 C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:58:2: error:
 'int64_t' does not name a type
 C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:61:2: error:
 'int64_t' does not name a type
 C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:64:2: error:
 'int64_t' does not name a type
 C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:93:2: error:
 'int64_t' does not name a type
 C:\BlenderSVN\blender\intern\dualcon\intern\/Projections.h:105:20: error:
 expected ')' before 'cube'
 In file included from
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/ios:40:0,
 from
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/istream:40,
 from
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/sstream:39,
 from
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/complex:47,
 from C:\BlenderSVN\blender\extern\Eigen3/Eigen/Core:149,
 from C:\BlenderSVN\blender\extern\Eigen3/Eigen/Dense:1,
 from
 C:\BlenderSVN\blender\intern\dualcon\intern\octree.cpp:24:
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
 expected '}' before end of line
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
 expected unqualified-id before end of line
 c:\mingw\bin\../lib/gcc/mingw32/4.5.2/include/c++/exception:37:37: error:
 expected declaration before end of line
 mingw32-make[2]: ***
 [intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/intern/octree.cpp.obj]
 Error 1
 mingw32-make[1]: *** [intern/dualcon/CMakeFiles/bf_intern_dualcon.dir/all]
 Error 2
 mingw32-make: *** [all] Error 2
 ___
 Bf-committers mailing list
 Bf-committers@blender.org
 http://lists.blender.org/mailman/listinfo/bf-committers




-- 
With best regards, Sergey Sharybin
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] Octree.cpp

2011-12-31 Thread Peter K.H. Gragert
fixed: thanks!

2011/12/31 Sergey Sharybin sergey@gmail.com

 Hi,

 Should be fixed now

 On Sat, Dec 31, 2011 at 4:31 PM, Peter K.H. Gragert pkhgrag...@gmail.com
 wrote:
 snip
 --
 With best regards, Sergey Sharybin
 ___
 Bf-committers mailing list
 Bf-committers@blender.org
 http://lists.blender.org/mailman/listinfo/bf-committers

___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


[Bf-committers] Happy new year!

2011-12-31 Thread Sergey Sharybin
Hello, Blender community!

It's a bit early for greetings even in our timezone, but not sure how much
i'll be online next hours. So..

I think it was awesome year. Happy new year everybody and let's make next
year even more awesome!

-- 
With best regards, Sergey Sharybin
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


[Bf-committers] windows vc2010 libs

2011-12-31 Thread Yousef Hurfoush

hi

why vc2010 for windows included in the main lib folder?
shouldn't it have a separate folder, as there are no benefit for speed over 2008
and as it has been said before the only benefit of 2010 compiling is a faster 
intellisense, 
and only dev's need that, these are big fellows to download!

Regards
Yousef Harfoush
ba...@msn.com

  
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] windows vc2010 libs

2011-12-31 Thread Alexandr Kuznetsov
Hi.

Yep, vc2010 shouldn't be in the main lib folder, but it is temporary like
with lib/windows/gcc. vc2010 needs some specific vc 2010 compiled
libraries. So soon you wouldn't have to have vs2008 with vs 2010.
If you want to discuss it, you can talk with me or DingTo in irc.

Happy New Year,
Alex


On Sat, Dec 31, 2011 at 11:19 AM, Yousef Hurfoush ba...@msn.com wrote:


 hi

 why vc2010 for windows included in the main lib folder?
 shouldn't it have a separate folder, as there are no benefit for speed
 over 2008
 and as it has been said before the only benefit of 2010 compiling is a
 faster intellisense,
 and only dev's need that, these are big fellows to download!

 Regards
 Yousef Harfoush
 ba...@msn.com


 ___
 Bf-committers mailing list
 Bf-committers@blender.org
 http://lists.blender.org/mailman/listinfo/bf-committers

___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


[Bf-committers] Proposal for 8 bpc sRGB / 32 bpc linear float

2011-12-31 Thread Troy Sobotka
There seems to be quite a bit of confusion with regards to the two
different buffer formats in Blender and how they are handled
internally.

From an artist perspective, this is deadly complicated as if you are,
for example, painting in 8 bpc sRGB space, your overs are not linear
whereas in 32 bpc, they are.

I propose two simple changes within Blender that would help artists
understand where and how they are working with respect to the buffers:

1) A readout in the UV Image viewer that shows that a buffer is either
8 bpc sRGB, 32 bpc linear, or any other format. The grey area where
the RGB values and Alpha are displayed would be the most logical.

2) A check to force float. Currently via lazy allocation may leave the
values in 8 bpc sRGB for things such as painting. A checkbox (similar
to the VSE minus the confusing sRGB format) would force the float
buffer to be defined and cleared when not.

And most importantly, have a happy New Year...

With respect,
TJS
___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers


Re: [Bf-committers] Happy new year!

2011-12-31 Thread Ruslan Merkulov
Happy New Year! Let all your wishes come true!

Thank you Blender devs for your hard work this year. You are the best and
you know it!

Cheers!

On Sat, Dec 31, 2011 at 5:32 PM, Sergey Sharybin sergey@gmail.comwrote:

 Hello, Blender community!

 It's a bit early for greetings even in our timezone, but not sure how much
 i'll be online next hours. So..

 I think it was awesome year. Happy new year everybody and let's make next
 year even more awesome!

 --
 With best regards, Sergey Sharybin
 ___
 Bf-committers mailing list
 Bf-committers@blender.org
 http://lists.blender.org/mailman/listinfo/bf-committers

___
Bf-committers mailing list
Bf-committers@blender.org
http://lists.blender.org/mailman/listinfo/bf-committers