OpenSceneGraph/src/osgPlugins
Robert Osfield 6fc00a2613 From Mathia Walker: bug fix to LOD ranges in TXP plugin to avoid cracks:
"I took a closer look at the conditional code in
SeamFinder::seamReplacement().

Because _info.minRange is a double and lod->getMinRange(0) is a float,
the difference will be calculated with double precision. If
_info.minRange is cast as a float it is exactly the same value as
lod->getMinRange(0) and the difference is exactly zero.

So if you change


 if((fabs(_info.minRange-lod->getMinRange(0))<0.001)&&(fabs(_info.lod0Range-lod->getMaxRange(0))<0.001))

to


 if((fabs((float)_info.minRange-lod->getMinRange(0))<0.001)&&(fabs((float)_info.lod0Range-lod->getMaxRange(0))<0.001))

it works a lot better."
2005-06-06 10:18:33 +00:00
..
3dc Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
ac3d From Geoff Michel : 2005-04-30 13:54:21 +00:00
bmp Fixes for Win32 build 2005-01-27 15:54:10 +00:00
dds From Sebastien Grignard, fixed memory leak where header and databuffers 2005-02-11 10:09:06 +00:00
directx Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
dw Fix for Tiger build 2005-05-04 11:38:34 +00:00
dxf Refinement of includes to help IRIX build 2005-05-13 12:06:58 +00:00
flt From Tom Jolly, fixes to the mapping of the billboard rotate mode. 2005-05-31 05:46:41 +00:00
freetype Removed old LUMINANCE_ALPHA code pathways since they are no longer used. 2005-04-28 19:08:44 +00:00
gdal Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
geo Updated Copyright notices to 1998-2005. 2005-04-14 21:41:28 +00:00
gif Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
hdr From Mike Weiblen, fix for Win32 build 2005-04-15 18:28:44 +00:00
Inventor Improvements to the handling of textures and texture coords. 2005-03-18 02:45:54 +00:00
ive From Joakim Simonsson, DOFTransform multiplication order support added to .ive format. 2005-05-18 19:04:35 +00:00
jp2 Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
jpeg Fixes for SOlaris build 2004-11-29 03:05:27 +00:00
lib3ds Moved osg::Impostor to osgSim::Impostor, as Impostor isn't a core feature. 2005-05-01 19:48:49 +00:00
logo Added new Node/Drawable::s/getInitialBound and Node/Drawable::s/getComputeBoundCallback 2005-05-12 14:03:22 +00:00
lwo Fix for Tiger build 2005-05-04 11:38:34 +00:00
lws Added #include <osg/io_utils> 2005-04-08 09:36:42 +00:00
md2 Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
net From Blake Williams, fix for VS8.0 build 2005-05-25 17:19:47 +00:00
obj Added tab to space converted to .obj plugin 2005-05-10 16:13:37 +00:00
osg Added s/getClearMask() support to osg::ClearNode, osgUtil::SceneView and the 2005-05-18 19:55:14 +00:00
osga From Bob Kuehne, fixes for OSX 10.4 build. 2005-05-03 14:31:01 +00:00
osgFX Preparation for moving osgGL2 out of the core OSG into its own seperate distribution. 2005-04-14 11:28:23 +00:00
osgParticle From James French, fix for multiple definitionwhen compiling osg + plugins into monolithic dll. 2005-05-26 13:56:23 +00:00
osgSim Moved Impostor from osg to osgSim .osg plugin 2005-05-01 21:33:12 +00:00
osgText From Paul de Repentinguy, DXF loader plugin. Ported to Linux by Robert Osfield. 2005-04-15 20:39:06 +00:00
osgtgz Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
pfb From Tom Jolly, fixes to the mapping of the billboard rotate mode. 2005-05-31 05:46:41 +00:00
pic Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
png Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
pnm Moved the template function into the global namespace. 2005-01-27 20:26:51 +00:00
quicktime Updated wrappers. 2005-05-20 21:12:57 +00:00
rgb From Per Fahlberg, support for 16bit imagery. 2005-01-07 20:36:04 +00:00
rot Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
scale Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
stl Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
tga Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
tgz Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
tiff Fixed TIFF readers handling of interleaved data 2005-05-02 20:00:42 +00:00
trans Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
txp From Mathia Walker: bug fix to LOD ranges in TXP plugin to avoid cracks: 2005-06-06 10:18:33 +00:00
xine Updated wrappers. 2005-05-20 21:12:57 +00:00
zip Made read/write methods in ReaderWriter all const to facilate multi-threading 2004-11-23 15:29:52 +00:00
GNUmakefile Changes to fix compiles on Mac OS X 2003-04-03 08:14:49 +00:00