aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Physics/Meshing (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-11-11clean up some cruftdahlia1-12/+2
2009-11-11minor: remove mono compiler warningJustin Clark-Casey (justincc)1-1/+1
2009-11-09add an overload to _SculptMesh for meshing from a list of coordinatesdahlia1-3/+46
add conditional compilation for System.Drawing dependency
2009-11-09minor: remove some mono compiler warningsJustin Clark-Casey (justincc)1-2/+2
2009-11-02Delete depricated extrusion methods and redirect to universal extrude method.dahlia1-833/+10
Sync with PrimMesher.cs r47 on forge.
2009-10-28Switching sculpty from CSJ2K back to OpenJPEG for now until more kinks are ↵John Hurliman1-2/+6
ironed out
2009-10-28Print the exception message when CSJ2K decoding fails for sculpty texturesJohn Hurliman1-3/+3
2009-10-26* Switched from OpenJPEG to CSJ2K in MeshmerizerJohn Hurliman1-3/+1
* Tested the previous patch and found no regressions
2009-10-26Experimental change of PhysicsVector to Vector3. UntestedJohn Hurliman3-34/+56
2009-10-26Added calls to GC.AddMemoryPressure() when unmanaged memory is allocated for ↵John Hurliman1-0/+6
ODE (helps the GC make better scheduling choices), and a call to GC.Collect() right before logins are enabled for a region. Although this doesn't change actual memory usage, it improves the reported usage from OpenSim and the operating system
2009-10-25Changing Scene.ForEachClient to use the synchronous for loop instead of ↵John Hurliman1-1/+1
Parallel. This is quite possibly the source of some deadlocking, and at the very least the synchronous version gives better stack traces * Lock the LLUDPClient RTO math * Add a helper function for backing off the RTO, and follow the optional advice in RFC 2988 to clear existing SRTT and RTTVAR values during a backoff * Removing the unused PrimitiveBaseShape.SculptImage parameter * Improved performance of SceneObjectPart instantiation * ZeroMesher now drops SculptData bytes like Meshmerizer, to allow the texture data to be GCed * Improved typecasting speed in MySQLLegacyRegionData.BuildShape() * Improved the instantiation of PrimitiveBaseShape
2009-10-19Formatting cleanup.Jeff Ames1-3/+3
2009-10-18Zero out PrimitiveBaseShape.SculptData after the JPEG2000 data has been ↵John Hurliman1-0/+3
decoded to allow garbage collection on it
2009-10-13* Eliminated unnecessary parameters from LLUDPServer.SendPacketData()John Hurliman1-1/+1
* Changed PrimMesher's Quat.Identity to return <0,0,0,1> instead of <0,0,0,1.1>
2009-10-11sync PrimMesher with r46dahlia2-19/+782
2009-10-11disambiguate System.Path (preparation for new PrimMesher)dahlia1-1/+1
2009-10-05Eliminate pinned Mesh data on managed heap by using IntPtrs to memory ↵Dan Lake1-54/+112
allocated on the unmanaged heap. This prevents fragmentation of the managed heap and the resulting stress on GC. A region with ~150,000 prims using ODE and Meshmerizer saw memory remain flat around 1.2GB as opposed to 1.5GB and continually growing due to pinned memory. This patch complements the unique mesh dictionary patch applied to Meshmerizer but is independent. The net effect is a 60-75% reduction in memory for our largest regions.
2009-10-04only cache mesh if meshing was successfuldahlia1-8/+4
re-enable sculpt mesh caching
2009-10-04flexible extrusion shape defaults to lineardahlia1-1/+1
2009-10-04Exclude sculpt proxies from mesh cachingdahlia1-6/+23
2009-09-30Create j2k cache directory if it doesn't exist. The Meshmerizer needs it there.Diva Canto1-0/+14
2009-09-29Add copyright header. Formatting cleanup.Jeff Ames2-2/+2
2009-09-25corrections to viewerMode AddPos()dahlia2-1/+40
2009-09-24Meshmerizer stores dictionary of unique Meshes keyed on construction ↵Dan Lake2-64/+92
parameters. CreateMesh() returns a Mesh from the dictionary or creates a new Mesh if it has not been created before. Meshes are never purged from the dictionary. The raw Mesh data is discarded once the memory is pinned for ODE use. All copies of the same prim/mesh use the same pinned memory. ONLY IMPLEMENTED AND TESTED WITH MESHMERIZER AND ODE Signed-off-by: dahlia <dahliaTrimble@gmailDotCom>
2009-09-02eliminate unnecessary storage of mesh objects which are no longer necessary ↵dahlia1-1/+0
after recent startup optimizations
2009-09-03Add copyright headers. Formatting cleanup.Jeff Ames1-2/+2
2009-09-01Applying Mantis #4079. Thank you, dslakeMelanie2-109/+57
2009-08-03starting to refactor path generation out of prim extrusiondahlia1-2/+18
2009-07-30Flag certain meshes to avoid vertex list compaction. This should help speed ↵Dahlia Trimble1-0/+2
up meshing time at startup.
2009-07-14add a constructor overload and an AddPos method to SculptMeshDahlia Trimble1-0/+33
2009-07-11Some improvements to prim face numbering - only affects viewers using PrimMesherDahlia Trimble1-11/+17
2009-06-10Formatting cleanup.Jeff Ames1-3/+1
2009-06-06some code cleanupDahlia Trimble1-3/+0
test commit with cygwin svn
2009-06-04Fix comparison of UUID with null.Jeff Ames1-1/+1
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames5-5/+5
LICENSE.txt.
2009-05-31reduce verbosity of sculpt map cache messages to reporting cache failures onlyDahlia Trimble1-2/+2
2009-05-29some clean up of sculpt map caching codeDahlia Trimble1-5/+3
remove a redundant debug message
2009-05-29reinstate a hopefully more robust experimental decoded sculpt map caching schemeDahlia Trimble1-3/+5
2009-05-29disable sculpt map caching until a better method of avoiding asset requests ↵Dahlia Trimble1-5/+8
can be found
2009-05-29Experimental decoded sculpt map cachingDahlia Trimble1-17/+48
2009-05-22cleaning out warnings.Dr Scofield1-37/+37
NOTE: we currently have a gazillion warnings caused stuff flagged as "obsolete" (OGS1 stuff) --- what's up with that?
2009-05-19Sculpt mesher refactorDahlia Trimble1-58/+98
adds some previously missing geometry to sculpties new LOD improves vertex accuracy fix torus mode mesh edge joining sync with primmesher r37
2009-05-15some sculpted prim geometry accuracy and meshing speed improvementsDahlia Trimble1-22/+7
2009-05-08Added a Copy() method to PrimMesh and SculptMesh as suggested by dmiles. ↵Dahlia Trimble2-20/+75
Sync PrimMesher.cs and SculptMesh.cs with PrimMesher.dll r36.
2009-05-03alter behavior of sculpted prim "Inside out" setting. Addresses Mantis #3514Dahlia Trimble1-1/+1
2009-04-24some code cleanupDahlia Trimble1-18/+0
sync with primmesher r35
2009-04-24Limit hollow size of physics proxy to 95%Dahlia Trimble2-2/+4
2009-04-18Add some documentation. (note this is *not* a thinly veiled attempt to ↵Dahlia Trimble1-1/+3
increase my commit frequency *wink*)
2009-04-11* Instead of referencing mesh stuff in the physics plugin.. change the IMesh ↵Teravus Ovares1-3/+13
Interface. (blame prebuild)
2009-04-05unspecified sculpt stitching mode now defaults to plane instead of sphere. ↵Dahlia Trimble1-1/+3
Addresses Mantis #3403