Hi Tossilo,

On 31 May 2012 11:28, Tassilo Glander
<[email protected]> wrote:
> the last check-in in osgviewer.cpp breaks the built (at least in VS2008, 32 
> Bit) because of the use of typedef int64_t GLint64; (line 108), which is not 
> defined in Windows.

Thanks for the note, the osgviewer.cpp change was checked in a little
prematurely.  I've added the following:

    #ifdef _WIN32
    typedef __int64 GLint64;
    typedef unsigned __int64 GLuint64;
    #else
    typedef int64_t GLint64;
    typedef uint64_t GLuint64;
    #endif

And checked this into svn/trunk, could you please try it out.

Thanks,
Robert.
_______________________________________________
osg-submissions mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org

Reply via email to