Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Robert Osfield
Hi All,

Any results from testing of OSG-2.8.1-rc5 yet?   I'm ready to tag
2.8.1, so am now just waiting for feedback from testing.

Thanks,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Pierre Bourdin (gmail)
Hi Robert,
I just finished compilation on Debian testing, without any trouble...

Everything seems to work perfectly.

I'll do some more tests this afternoon...

Pierre.


cmake --version
cmake version 2.6-patch 4

gcc version 4.3.3 (Debian 4.3.3-3)

/proc/driver/nvidia/version
NVRM version: NVIDIA UNIX x86 Kernel Module  180.51  Thu Apr 16 19:02:15
PDT 2009
GCC version:  gcc version 4.1.3 20080704 (prerelease) (Debian 4.1.2-25)

/proc/driver/nvidia/cards/0
Model:   Quadro FX 3450/4000 SDI
IRQ: 18
Video BIOS:  05.41.02.43.05
Card Type:   PCI-E
DMA Size:39 bits
DMA Mask:0x7f
Bus Location:05.00.0

___

glxinfo |grep version
server glx version string: 1.4
client glx version string: 1.4
GLX version: 1.3
OpenGL version string: 2.1.2 NVIDIA 180.51

Distributor ID: Debian
Description:Debian GNU/Linux testing (squeeze)
Release:testing
Codename:   squeeze


Le mardi 19 mai 2009 à 09:43 +0100, Robert Osfield a écrit :
 Hi All,
 
 Any results from testing of OSG-2.8.1-rc5 yet?   I'm ready to tag
 2.8.1, so am now just waiting for feedback from testing.
 
 Thanks,
 Robert.
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Pierre BOURDIN
I.M.E.R.I.R.
Av. Pascot BP 90443
66004 PERPIGNAN
tél: 04 68 56 84 95
fax: 04 68 55 03 86
email: bour...@imerir.com


___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Tony Horrobin
Hi Robert,

rc5 appears to run fine on:
Ubuntu Hardy
gcc 4.2.4
GeForce 8800GTS

Cheers,
-Tony

--
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=12470#12470





___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread J.P. Delport

Hi,

compiled fine (libs+examples) on Debian unstable:

cmake version 2.6-patch 4

gcc version 4.3.3 (Debian 4.3.3-10)

jp

Robert Osfield wrote:

Hi All,

Any results from testing of OSG-2.8.1-rc5 yet?   I'm ready to tag
2.8.1, so am now just waiting for feedback from testing.

Thanks,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org



--
This message is subject to the CSIR's copyright terms and conditions, e-mail legal notice, and implemented Open Document Format (ODF) standard. 
The full disclaimer details can be found at http://www.csir.co.za/disclaimer.html.


This message has been scanned for viruses and dangerous content by MailScanner, 
and is believed to be clean.  MailScanner thanks Transtec Computers for their support.


___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Paul Melis

Hi,

Regarding rev 10233:

---
osg/Vec?b:

  Also changed
  typedef char value_type;
  to
  typedef signed char value_type;

  In the case of a simple char, SWIG assumes a string.
  Using signed char instead of char does not change
  the behaviour of the class.
---

Transforming char to signed char obviously changes the behaviour, as you 
can no longer store values in same range anymore. E.g.


14:37|me...@juggle2:~/c/osg/svn/branches-2.8 cat t.cc
#include osg/Vec3b
#include cstdio
int main()
{
   osg::Vec3b  col;
   col.x() = 255;
   printf(%d\n, col.x());
}
14:37|me...@juggle2:~/c/osg/svn/branches-2.8 g++ -o t t.cc -I 
~/osg2.8/include/

14:37|me...@juggle2:~/c/osg/svn/branches-2.8 ./t
-1

This seems like a bad idea, as I suspect people are more likely to use 
Vec3b for storing colors values, instead of values in the -127..128 range.

I would suggest reverting the change and make Vec?b store char's once more.

Regards,
Paul

Robert Osfield wrote:

Hi All,

I've just tagged another release candidate, this time we've hit
2.8.1-rc5.  Fingers crossed this will be our latest rc and we can
quickly move on to tagging 2.8.1 and get some new binaries posted.

http://www.openscenegraph.org/projects/osg/wiki/Downloads

Source Code: ¶

source package : OpenSceneGraph-2.8.1-rc5.zip
svn tag: svn co
http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-2.8.1-rc5
OpenSceneGraph


Could users please test out this latest rc5 this afternoon/evening and
if things look good on the major platforms I'll tag 2.8.1 tomorrow
morning.

Thanks for your assistance,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

  


___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Rafa Gaitan
Hi Robert,

Compiled fine on MacOSX Leopard with cmake version 2.6-patch 2 and in
Ubuntu 9.04.

Rafa.


On Tue, May 19, 2009 at 1:44 PM, J.P. Delport jpdelp...@csir.co.za wrote:
 Hi,

 compiled fine (libs+examples) on Debian unstable:

 cmake version 2.6-patch 4

 gcc version 4.3.3 (Debian 4.3.3-10)

 jp

 Robert Osfield wrote:

 Hi All,

 Any results from testing of OSG-2.8.1-rc5 yet?   I'm ready to tag
 2.8.1, so am now just waiting for feedback from testing.

 Thanks,
 Robert.
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


 --
 This message is subject to the CSIR's copyright terms and conditions, e-mail
 legal notice, and implemented Open Document Format (ODF) standard. The full
 disclaimer details can be found at http://www.csir.co.za/disclaimer.html.

 This message has been scanned for viruses and dangerous content by
 MailScanner, and is believed to be clean.  MailScanner thanks Transtec
 Computers for their support.

 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org




-- 
Rafael Gaitán Linares
Instituto de Automática e Informática Industrial  http://www.ai2.upv.es
Ciudad Politécnica de la Innovación
Universidad Politécnica de Valencia
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Paul Melis

Paul Melis wrote:

Hi,

Regarding rev 10233:

---
osg/Vec?b:

  Also changed
  typedef char value_type;
  to
  typedef signed char value_type;

  In the case of a simple char, SWIG assumes a string.
  Using signed char instead of char does not change
  the behaviour of the class.
---

Transforming char to signed char obviously changes the behaviour, as 
you can no longer store values in same range anymore. E.g.


14:37|me...@juggle2:~/c/osg/svn/branches-2.8 cat t.cc
#include osg/Vec3b
#include cstdio
int main()
{
   osg::Vec3b  col;
   col.x() = 255;
   printf(%d\n, col.x());
}
14:37|me...@juggle2:~/c/osg/svn/branches-2.8 g++ -o t t.cc -I 
~/osg2.8/include/

14:37|me...@juggle2:~/c/osg/svn/branches-2.8 ./t
-1

This seems like a bad idea, as I suspect people are more likely to use 
Vec3b for storing colors values, instead of values in the -127..128 
range.
I would suggest reverting the change and make Vec?b store char's once 
more.
Hmm, there's a Vec4ub class, but not a Vec3ub one. So perhaps it would 
be more appropriate to add a Vec3ub to store 0..255 values as an 
alternative...


Paul

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Robert Osfield
Hi Paul,

There is a Vec3ub and a Vec3b, if you want a 0 to 255 range for a
colour then you'd use a Vec3ub rather than a Vec3b.  So rather than
introducing problems I would have though this would avoid them.

Robert.

On Tue, May 19, 2009 at 1:40 PM, Paul Melis p...@science.uva.nl wrote:
 Hi,

 Regarding rev 10233:

 ---
 osg/Vec?b:

  Also changed
      typedef char value_type;
  to
      typedef signed char value_type;

  In the case of a simple char, SWIG assumes a string.
  Using signed char instead of char does not change
  the behaviour of the class.
 ---

 Transforming char to signed char obviously changes the behaviour, as you can
 no longer store values in same range anymore. E.g.

 14:37|me...@juggle2:~/c/osg/svn/branches-2.8 cat t.cc
 #include osg/Vec3b
 #include cstdio
 int main()
 {
   osg::Vec3b  col;
   col.x() = 255;
   printf(%d\n, col.x());
 }
 14:37|me...@juggle2:~/c/osg/svn/branches-2.8 g++ -o t t.cc -I
 ~/osg2.8/include/
 14:37|me...@juggle2:~/c/osg/svn/branches-2.8 ./t
 -1

 This seems like a bad idea, as I suspect people are more likely to use Vec3b
 for storing colors values, instead of values in the -127..128 range.
 I would suggest reverting the change and make Vec?b store char's once more.

 Regards,
 Paul

 Robert Osfield wrote:

 Hi All,

 I've just tagged another release candidate, this time we've hit
 2.8.1-rc5.  Fingers crossed this will be our latest rc and we can
 quickly move on to tagging 2.8.1 and get some new binaries posted.

 http://www.openscenegraph.org/projects/osg/wiki/Downloads

 Source Code: ¶

    source package : OpenSceneGraph-2.8.1-rc5.zip
    svn tag: svn co

 http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-2.8.1-rc5
 OpenSceneGraph


 Could users please test out this latest rc5 this afternoon/evening and
 if things look good on the major platforms I'll tag 2.8.1 tomorrow
 morning.

 Thanks for your assistance,
 Robert.
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org



 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Robert Osfield
On Tue, May 19, 2009 at 2:15 PM, Robert Osfield
robert.osfi...@gmail.com wrote:
 Hi Paul,

 There is a Vec3ub and a Vec3b, if you want a 0 to 255 range for a
 colour then you'd use a Vec3ub rather than a Vec3b.  So rather than
 introducing problems I would have though this would avoid them.

Opps there isn't a Vec3ub, a bit of missing implementation.  Still a
Vec3b isn't a Vec3ub, so signed char is indeed correct for a Vec3b.

For colours one would use a Vec4ub though which is defined :-)

For 2.9.x we can add a Vec2ub and Vec3ub to complete the set, not of
OSG-2.8 though.

Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Robert Osfield
Hi All,

Thanks for the testing.  So far we have 3 confirmations for linux
distro's, one for OSX, none for Window or other systems yet.

If you are currently doing a build and test and it hasn't completed
yet please tell me so I know what I might be able to do the final tag
of 2.8.1.  So far things look good for the release this afternoon.

Cheers,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Pierre Bourdin (gmail)
Yep,
i've just start a windows build... I'll tell you later.

Do you need some special test ?

Pierre.

Le mardi 19 mai 2009 à 14:21 +0100, Robert Osfield a écrit :
 Hi All,
 
 Thanks for the testing.  So far we have 3 confirmations for linux
 distro's, one for OSX, none for Window or other systems yet.
 
 If you are currently doing a build and test and it hasn't completed
 yet please tell me so I know what I might be able to do the final tag
 of 2.8.1.  So far things look good for the release this afternoon.
 
 Cheers,
 Robert.
 ___
 osg-users mailing list
 osg-users@lists.openscenegraph.org
 http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Pierre BOURDIN
I.M.E.R.I.R.
Av. Pascot BP 90443
66004 PERPIGNAN
tél: 04 68 56 84 95
fax: 04 68 55 03 86
email: bour...@imerir.com


___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Andy Skinner
Windows XP with NVidia card has been fine so far.  I'm using cmake 2.6 patch 2.

I'm working on OSX 32 and 64 bit, and linux 64 bit.

andy

-Original Message-
From: osg-users-boun...@lists.openscenegraph.org 
[mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Robert Osfield
Sent: Tuesday, May 19, 2009 9:21 AM
To: OpenSceneGraph Users
Subject: Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

Hi All,

Thanks for the testing.  So far we have 3 confirmations for linux
distro's, one for OSX, none for Window or other systems yet.

If you are currently doing a build and test and it hasn't completed
yet please tell me so I know what I might be able to do the final tag
of 2.8.1.  So far things look good for the release this afternoon.

Cheers,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Andy Skinner
Well, everything seems to have built well and compiled with our stuff.  I'm 
having trouble completing the test that I want to do, but the problem is on my 
end, and I don't have time for it, sorry.  I believe it is working (passed our 
unittests, compiled).

andy

-Original Message-
From: osg-users-boun...@lists.openscenegraph.org 
[mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Andy Skinner
Sent: Tuesday, May 19, 2009 10:27 AM
To: OpenSceneGraph Users
Subject: Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

Windows XP with NVidia card has been fine so far.  I'm using cmake 2.6 patch 2.

I'm working on OSX 32 and 64 bit, and linux 64 bit.

andy
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-19 Thread Robert Osfield
Hi All,

I have just done my latest check in for 2.8.1, and this was just house
keeping task such updates to dates, authors etc, and changing of the
release candidate variable back to 0 which signifies a full release.
So far I haven't seen any build/testing problems reported so it does
look like we are good to go.

I've just done a clean check out of the OpenSceneGraph-2.8 branch and
am doing one last final test build, and if that goes fine will tag
2.8.1.  This should be in the next half hour.

Thanks for all your assistance with testing/debugging.
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


[osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-18 Thread Robert Osfield
Hi All,

I've just tagged another release candidate, this time we've hit
2.8.1-rc5.  Fingers crossed this will be our latest rc and we can
quickly move on to tagging 2.8.1 and get some new binaries posted.

http://www.openscenegraph.org/projects/osg/wiki/Downloads

Source Code: ¶

source package : OpenSceneGraph-2.8.1-rc5.zip
svn tag: svn co
http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-2.8.1-rc5
OpenSceneGraph


Could users please test out this latest rc5 this afternoon/evening and
if things look good on the major platforms I'll tag 2.8.1 tomorrow
morning.

Thanks for your assistance,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

2009-05-18 Thread Andy Skinner
I'll try, but not sure I can finish this afternoon.  I was still working on rc 
4.

andy

-Original Message-
From: osg-users-boun...@lists.openscenegraph.org 
[mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Robert Osfield
Sent: Monday, May 18, 2009 12:20 PM
To: OpenSceneGraph Users
Subject: [osg-users] OpenSceneGraph-2.8.1 release candidate five tagged

Hi All,

I've just tagged another release candidate, this time we've hit
2.8.1-rc5.  Fingers crossed this will be our latest rc and we can
quickly move on to tagging 2.8.1 and get some new binaries posted.

http://www.openscenegraph.org/projects/osg/wiki/Downloads

Source Code: ¶

source package : OpenSceneGraph-2.8.1-rc5.zip
svn tag: svn co
http://www.openscenegraph.org/svn/osg/OpenSceneGraph/tags/OpenSceneGraph-2.8.1-rc5
OpenSceneGraph


Could users please test out this latest rc5 this afternoon/evening and
if things look good on the major platforms I'll tag 2.8.1 tomorrow
morning.

Thanks for your assistance,
Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org