aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/share
Commit message (Collapse)AuthorAgeFilesLines
...
* j3dcore: remove the totally unused J3dNodeTable classHarvey Harrison2012-06-232-301/+0
| | | | | | Can't find where this was ever used. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate some priviledged actions with return typesHarvey Harrison2012-06-231-41/+35
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: more list type annotationHarvey Harrison2012-06-232-10/+9
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove unneeded cast and unused variableHarvey Harrison2012-06-231-3/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove isWindows boolean stateHarvey Harrison2012-06-231-12/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove appletLauncher code, rely on JOGL to load native bitsHarvey Harrison2012-06-231-16/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate deviceMap with type informationHarvey Harrison2012-06-232-5/+3
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove some dead code from Screen3DHarvey Harrison2012-05-191-2/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove inc/dec canvasCount helpers from Screen3DHarvey Harrison2012-05-191-15/+0
| | | | | | Only used by MasterControl and it does its own locking there. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove unused activeViews list from Screen3DHarvey Harrison2012-05-191-15/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate the Device->Renderer map and always use static accessHarvey Harrison2012-05-193-21/+15
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: removed some unused local vars in Canvas3DHarvey Harrison2012-05-191-7/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate dirty list of displaylistsHarvey Harrison2012-05-193-7/+6
| | | | | | - This would be better doen with a trivial inner class instead of Object[] Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove unneeded casts in Canvas3DHarvey Harrison2012-05-191-5/+4
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove RCS file markers from source filesHarvey Harrison2012-05-18399-1995/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove some unneeded casts from NodeRetainedHarvey Harrison2012-05-081-9/+9
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate the SharedGroupRetained parents memberHarvey Harrison2012-05-088-37/+28
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: move Jogl-using classes into the main source folderHarvey Harrison2012-05-076-0/+9107
| | | | | | We now assume Jogl support, keep it with the rest of the code. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: disable all support for GL_NV_register_combinersHarvey Harrison2012-05-031-3/+4
| | | | | | | - remove ability to enable them using j3d.usecombiners - comment out body of function, remove it from Pipeline entirely later Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove static feature boolean for CG libraryHarvey Harrison2012-05-031-4/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate GeometryRetained userslistHarvey Harrison2012-05-033-40/+28
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove d3d callback from GeometryArrayRetainedHarvey Harrison2012-05-035-36/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate users list in Screen3DHarvey Harrison2012-05-031-25/+16
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove more D3D only codeHarvey Harrison2012-05-035-124/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: beginScene/endScene was only used by D3D...remove itHarvey Harrison2012-05-035-46/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove all CG-shader support code (well, most of it anyways)Harvey Harrison2012-05-035-961/+15
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove the ability to set the shading language to CG, assume GLSLHarvey Harrison2012-05-033-71/+2
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: simplify Pipeline singleton creationHarvey Harrison2012-05-031-31/+25
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove a bunch of the native support code and classesHarvey Harrison2012-05-039-4034/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: default to JOGL pipeline always, remove option to set native pipelinesHarvey Harrison2012-05-031-15/+2
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: use an explicit boolean when a PhysicalEnvironment has no more usersHarvey Harrison2012-03-051-20/+20
| | | | | | Then test that boolean to determine if it needs to be removed from the Hastable. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate PhysicalEnvironment static hashmapHarvey Harrison2012-03-052-6/+8
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate the PhysicalEnvironment::devices listHarvey Harrison2012-03-052-60/+52
| | | | | | | Ensure this list is consistantly synchronized which will make it easier to use ArrayList if desired in a future patch. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate PhysicalEnvironment::users list as holding ViewsHarvey Harrison2012-03-053-51/+45
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: ViewPlatformRetained::getViewList cannot return nullHarvey Harrison2012-03-051-10/+9
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove unneeded casts to View in SoundStructureHarvey Harrison2012-03-051-4/+4
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove the unused SoundRenderer class...never seems to be usedHarvey Harrison2012-03-033-97/+0
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: change getViewPlatformList() to never return null and remove checksHarvey Harrison2012-03-032-65/+37
| | | | | | Also, consistently lock the cached array using the List it caches. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: add an early return to the enable/disable event functions to reduce ↵Harvey Harrison2012-03-031-148/+120
| | | | | | indentation Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: preparation patch for cleanup of getViewList() users in VirtualUniverseHarvey Harrison2012-03-031-137/+132
| | | | | | No functional changes, just making the whitespace consistent. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: only mark the cached view list as dirty if we actually change itHarvey Harrison2012-03-031-5/+3
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate list of Views in ViewPlatformRetainedHarvey Harrison2012-03-031-30/+30
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate GroupRetained's list of child nodes and compiled child nodesHarvey Harrison2012-02-265-90/+60
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: annotate NodeRetained::branchGroupPathsHarvey Harrison2012-02-269-30/+27
| | | | | | - also use the copy constructor rather than clone() Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove code that was stubbed-out in issue 458Harvey Harrison2012-02-212-36/+1
| | | | Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: use annotated ArrayList of AWTEvents in WakeupOnAWTEventHarvey Harrison2012-02-201-16/+12
| | | | | | Make the locking explicit where used. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove the DVR backdoor in ViewHarvey Harrison2012-02-201-47/+0
| | | | | | Dynamic Video Resize is effectively unused internally, kill it. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: remove the unneeded centroid from BoundingBoxHarvey Harrison2012-01-241-15/+8
| | | | | | | Return a temp Point3d as it's not that much more expensive than the math we're already doing. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: switch the orderedBin array expansion to happen at set, rather than ↵Harvey Harrison2012-01-241-7/+18
| | | | | | | | | get time Add early return of null for the viewIndex >= array length and only expand the allocation when we set a non-null orderedBin. Signed-off-by: Harvey Harrison <[email protected]>
* j3dcore: format whitespace and move some variables into loops around callers ↵Harvey Harrison2012-01-241-67/+50
| | | | | | | | of OrderedGroupRetained::[gs]etOrderedBin Preparation patch to change where the OrderedBin array is expanded. Signed-off-by: Harvey Harrison <[email protected]>