Robert Osfield
7b53511251
From Paul Martz, "The gist of this change is, if the OpenFlight version of the
...
parent file is so old that it doesn't support Light Point palettes or Shader
palettes, then the parent file is not allowed to override those palettes in
the child."
2006-08-14 07:59:28 +00:00
Robert Osfield
c3313b99b2
Changed the texture wrap mode to repeat
2006-08-13 08:24:19 +00:00
Robert Osfield
25a91d97f0
From Chuck Sembroski, fixes for IRIX
2006-08-13 07:37:55 +00:00
Robert Osfield
a16568254c
Moved reset to 0 of _createReuseMatrixIndex from CullVistor.cpp to CullStack.cpp so that
...
CullStack::reset works correctly for all subclasses - fixing a memory consumption issue with occluders
2006-08-12 18:19:43 +00:00
Robert Osfield
132f9ead45
Updated version number for 1.1.1 release
2006-08-12 08:29:16 +00:00
Robert Osfield
ad2b719dc0
Added osg:: to Referenced() to fix IRIX build.
2006-08-11 21:39:41 +00:00
Robert Osfield
c00b708c0c
Updated wrappers
2006-08-11 18:23:10 +00:00
Robert Osfield
38c70042a5
Fixed if (numProcessors>1), was originally >=
2006-08-11 18:22:16 +00:00
Don BURNS
2bed6e60a1
Added comments to support use of Proxy in the .net plugin.
2006-08-11 17:39:10 +00:00
Don BURNS
a456538e3c
Submission by Carlo Camporesi - Added Proxy support to .net loader
2006-08-11 17:34:04 +00:00
Robert Osfield
6b3fbb53f8
Added file search path to ESRI reader.
2006-08-11 13:06:36 +00:00
Robert Osfield
306743c903
Fixed bug in Group::setChild relating to the accounting for OccluderNode.
2006-08-11 12:53:57 +00:00
Robert Osfield
1e742f1064
Moved the OpenThreads::GetNumberOfProcessors() inside the if (_enableProcessAffinitHint) block to
...
avoid slowing down init of apps that don't require procesor affinity.
2006-08-11 12:39:42 +00:00
Robert Osfield
d1fe85caf6
Fixed pbuffer usage cross multiple graphics contexts
2006-08-11 11:05:09 +00:00
Robert Osfield
44916d398f
Moved all platform specific processor out of osgProducer and into OpenThreads
2006-08-10 15:53:01 +00:00
Robert Osfield
0c91825ee6
From Laurens Voerman, "
...
osgPlugins\pfb\ConvertFromPerformer.cpp
Added support for
PFSTATE_ALPHAFUNC
PFSTATE_ALPHAREF
Improved handling of
PFTR_NO_OCCLUDE
I have tested this with WIN32 performer 3.1 and 3.2.2
and linux OpenGL Performer 3.1.1"
------------------------------------------------
2006-08-10 13:12:47 +00:00
Robert Osfield
7f6b5008e2
Added write ppn support, use -O ascii to select ascii ppn output, otherwise binary
...
is chosen.
Fixed crash when erroneous pnm files were read.
Added -O flip option.
2006-08-10 11:08:20 +00:00
Robert Osfield
f6d092957f
Commented out the _textBB contribution of outline/backdrops to fix bounding box problem.
2006-08-10 06:20:28 +00:00
Robert Osfield
4e2ce78e35
Added Vec4ub and removed UByte4
2006-08-09 12:56:37 +00:00
Robert Osfield
5e33e13b34
Added nan dectecion and error reporting
2006-08-09 10:09:11 +00:00
Robert Osfield
bcd4aae4d5
Added TESSELATE_GEOMETRY to Optimizer pass to fix z fighting issues.
2006-08-08 16:08:06 +00:00
Robert Osfield
c0cd67aa8f
Added extra defined(CPU_SET) to try and get round RH8 compile problems.
2006-08-08 14:57:14 +00:00
Robert Osfield
081b15c84d
Fixed backColor implementation for LightPointAppearancePalette.
2006-08-08 11:59:53 +00:00
Robert Osfield
2616174b06
Added support for --affinity command line option for switch on procesor affinity where supported,
2006-08-08 11:27:36 +00:00
Robert Osfield
444f561c14
From Paul Martz, "This change causes the new OpenFlight plugin to behave as the
...
old plugin by returning the database origin latitude/longitude (extracted
from the header record) as userData of the top-level scene graph node."
2006-08-08 11:23:57 +00:00
Robert Osfield
d0d48b0e5a
Fixed the positioning of the graphical stats bars so that they don't overlap
...
the stats text
2006-08-08 10:41:51 +00:00
Robert Osfield
687bfb40c1
Added preliminary support for process affinity support under Linux.
2006-08-06 16:49:48 +00:00
Robert Osfield
7e0a183032
Added fix to code catching error results ReadResult's to first instance of checking the
...
value of ReadResult.
2006-08-05 20:39:47 +00:00
Robert Osfield
6c419af79c
From Jeremy Moles, refactored by Robert Osfield.
...
Fixed bug osgDB::Registry::Registry::read(const ReadFunctor& readFunctor) relating to
the handling of failed loads with the ReadResult::_message value being lost, this changes
ensure that the original ReadResult from the plugin, with message intact, is returned correctly.
2006-08-05 20:36:49 +00:00
Robert Osfield
b832453c10
From Uwe Woessner, implementated by Robert Osfield, Fixed vertex attribute bug, changed _vertexAttribList[unit] -> _vertexAttribList[index]
2006-08-04 13:17:56 +00:00
Robert Osfield
43e65c11b1
Added if search for the current databaseRequest in the _fileRequestList to handle
...
cases when the request is moved back in the list, or when the _fileRequestList is cleared
by an asyncronous call to DatabasePager::clear().
2006-08-03 19:14:52 +00:00
Robert Osfield
5889052f5a
Updated wrappers
2006-08-03 16:04:43 +00:00
Robert Osfield
174e3b3dc3
Fixed RenderToTexture bug which occured when the viewport dimensions where
...
different than the texture being written to.
2006-08-03 15:57:39 +00:00
Robert Osfield
7ef12b37b5
Changed:
...
static TextureGLModeSet s_textureGLModeSet;
To:
static TextureGLModeSet& getTextureGLModeSet()
{
static TextureGLModeSet s_textureGLModeSet;
return s_textureGLModeSet;
}
to prevent static initialization problems under static builds.
2006-08-03 13:35:21 +00:00
Robert Osfield
7b313eef34
Added OSG_TEXT_INCREMENTAL_SUBLOADING ON/OFF env var check to osgText::Font
...
to optional disable the incremental subloading.
2006-08-03 13:12:14 +00:00
Robert Osfield
7eb7bbdb84
Updated wrappers
2006-08-02 21:09:25 +00:00
Robert Osfield
9e7b07fbcf
Reworked the state management within osgText::Text and osgText::Font so that it
...
only applies textures locally rather than whole StateSet.
2006-08-02 21:05:56 +00:00
Robert Osfield
0336231321
Moved extension function pointer initilization into a method, and the pointers from
...
being static to be local member variables. This should avoid issues under Windows
with multiple graphics contexts have seperate entry points.
2006-08-02 16:14:17 +00:00
Robert Osfield
4d556c0ec4
Reworked the TextureObjectManager singleton so that it no longer reconstructed itself once deleted, and added checks to against a null manager to prevent calling code crashing.
2006-08-02 15:41:47 +00:00
Robert Osfield
cdaca0ebdf
Fixed crash due on multipipe systems due by moving the local camera update code from the cull into the update traversal.
2006-08-02 11:36:13 +00:00
Robert Osfield
553d017fd9
From Daniel Trstenjak, build fixes for Hpux 11.11, Irix 6.5, Solaris 8 and Aix
2006-08-02 10:43:26 +00:00
Robert Osfield
91081a0ad7
Fixed doubleButtonPress.
2006-08-01 13:08:37 +00:00
Robert Osfield
5c4446dd5e
From Jason Beverage,
...
"I've attached fixes to DataSet that should fix the problems that Maya was seeing yesterday. The issue was that the new interpolation code I submitted didn't use the SourceData's georef, it was assuming that the GDALDataSet had a proper geo-ref. I've made the getInterpolatedValue method a member of SourceData and now it uses the georef the SourceData's georef.
I also forward declared the GDALRasterBand class in the DataSet header."
2006-07-31 20:56:22 +00:00
Robert Osfield
564ee34f76
Added Matrix*::getRotate()/setRotate(Quat), deprecating Matrix*::get(Quat&), Matrix*::set(Quat&)
2006-07-31 17:31:21 +00:00
Robert Osfield
b1994cc60d
Fixed multi-threaded/multi-pipe crash when primitive stats where output in osgProducer::Viewer's stats.
2006-07-29 16:47:28 +00:00
Robert Osfield
f977d7c606
Updated osgunittests with a matrix invert unit test, and added a conditional
...
calling of invert_4x4 or invert_4x3 depending on the the right hand column of the matrix.
Updated wrappers
2006-07-28 13:48:08 +00:00
Robert Osfield
f5b5f7f527
From Jason Beverage, "This patch should fix Gert's problem that he posted on osg-users. I downloaded the sample he posted, reproduced the error, and added an additional check to make sure the GDAL window size was valid. Now his example works fine. Changes made against current CVS.
...
"
2006-07-27 16:41:22 +00:00
Robert Osfield
a5ea4e0b33
From David Spilling, "Matrix_implementation.cpp modified as requested. I ran a version of it through a local version of osgunittests.cpp and it passes.
...
Note that firstly it always returns the positive real quaternion (positive w)
Note also that it will sometimes slightly differ from the results of the other methods because it assumes that the input matrix really is a rotation matrix - if it isn't, e.g. because of rounding error, then the output quaternion will be very slightly different. For example, the test matrix
0 1 0 0
1 0 0 0
0 0 0.999999 0
0 0 0 1
will return 0.707107 0.707107 0.0005033 0.0005033
whereas the previous methods return 0.707107 0.707107 0.0 0.0
However, since quaternions are rotations, the meaning of how to convert a matrix that isn't a rotation is a little unclear..."
2006-07-27 15:23:50 +00:00
Robert Osfield
c0c5e73ff9
From Michael Polak, double click fixes/additions
2006-07-27 12:32:40 +00:00
Robert Osfield
cd4a24731a
From Eric Wing, add outline to help text to make it easier to read on different coloured backgrounds
2006-07-27 11:58:55 +00:00