Fixed errors in Contributors list
This commit is contained in:
95
ChangeLog
95
ChangeLog
@@ -1,3 +1,98 @@
|
||||
2013-10-03 08:45 robert
|
||||
|
||||
* include/osgUtil/IntersectionVisitor,
|
||||
include/osgUtil/LineSegmentIntersector,
|
||||
include/osgUtil/RayIntersector, src/osgUtil/CMakeLists.txt,
|
||||
src/osgUtil/LineSegmentIntersector.cpp,
|
||||
src/osgUtil/RayIntersector.cpp: From Jan Peciva, RayIntersector
|
||||
implementation
|
||||
|
||||
2013-10-02 13:59 robert
|
||||
|
||||
* include/osgDB/ObjectWrapper, src/osgDB/InputStream.cpp,
|
||||
src/osgDB/ObjectWrapper.cpp: From Colin McDonald and Robert
|
||||
Osfield, "When a serializer shared library is loaded it registers
|
||||
all of
|
||||
the wrappers it contains. The registration creates a prototype
|
||||
object for all of the wrapped classes. For some of the
|
||||
higher-level
|
||||
classes this can be a bit heavy.
|
||||
|
||||
I noticed a problem with a model which required a single class
|
||||
from
|
||||
osgSim. When osgdb_serializers_osgsim.so was loaded it registered
|
||||
wrappers and created prototype objects for all of the osgSim
|
||||
classes,
|
||||
including osgSim::ScalarBar. The constructor for that class
|
||||
creates
|
||||
several drawables, and loads arial.ttf using the freetype plugin.
|
||||
I
|
||||
don't need that, and don't even ship the font or plugin with my
|
||||
application, resulting in an unexplained warning message loading
|
||||
the model.
|
||||
|
||||
I've modified the ObjectWrapper class to defer the prototype
|
||||
object
|
||||
creation until if & when actually required."
|
||||
|
||||
2013-10-02 11:29 robert
|
||||
|
||||
* src/osgPlugins/osc/osc/OscHostEndianness.h: From Dmitry
|
||||
Marakasov, "These are FreeBSD bits for
|
||||
src/osgPlugins/osc/osc/OscHostEndianness.h,
|
||||
required to build newever OSG on this OS. Also corrects file name
|
||||
in the error message - I was confused not to find
|
||||
OSCHostEndianness.h
|
||||
after I've got this error.
|
||||
|
||||
Tested by successfully building OSG 3.2.0 with this patch on
|
||||
FreeBSD
|
||||
9.1."
|
||||
|
||||
2013-10-02 11:28 robert
|
||||
|
||||
* include/osg/State: Re-ordered the public/protected sections to
|
||||
keep the public section all together
|
||||
|
||||
2013-10-02 11:09 robert
|
||||
|
||||
* src/osgPlugins/stl/ReaderWriterSTL.cpp: From Björn Hein, "it
|
||||
seems that for generating "per vertex normals" as stated in the
|
||||
comment, two of them are missing. This results in wrong display
|
||||
of
|
||||
STL-files regarding normals. Following simple fix seems to work:
|
||||
|
||||
Index: ReaderWriterSTL.cpp
|
||||
===================================================================
|
||||
--- ReaderWriterSTL.cpp (Revision 13797)
|
||||
+++ ReaderWriterSTL.cpp (Arbeitskopie)
|
||||
@@ -108,6 +108,8 @@
|
||||
++itr)
|
||||
{
|
||||
perVertexNormals->push_back(*itr);
|
||||
+ perVertexNormals->push_back(*itr);
|
||||
+ perVertexNormals->push_back(*itr);
|
||||
}
|
||||
|
||||
geom->setNormalArray(perVertexNormals.get(),
|
||||
osg::Array::BIND_PER_VERTEX);
|
||||
"
|
||||
|
||||
2013-10-01 19:34 robert
|
||||
|
||||
* src/osgPresentation/Cursor.cpp, src/osgPresentation/Image.cpp,
|
||||
src/osgPresentation/Movie.cpp: Fixed build with no automatic
|
||||
ref_ptr<> conversion
|
||||
|
||||
2013-10-01 19:31 robert
|
||||
|
||||
* AUTHORS.txt, applications/osgversion/Contributors.cpp: Updated
|
||||
AUTHORS files
|
||||
|
||||
2013-10-01 19:00 robert
|
||||
|
||||
* ChangeLog: Updated ChangeLog in prep for dev release
|
||||
|
||||
2013-10-01 17:01 robert
|
||||
|
||||
* include/osg/State: From Aurelien Albert, "I'm working with OSG
|
||||
|
||||
Reference in New Issue
Block a user