Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | j3dcode: sweep up some trivial warning fixes | Harvey Harrison | 2013-01-27 | 13 | -17/+8 |
| | | | | | | | | - unused temp variables - casts that are unnecessary - convert an instanceof that is effectively a null-check Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate dirtyList in RenderBin | Harvey Harrison | 2013-01-27 | 1 | -4/+4 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate list of RenderAtoms in RenderBin | Harvey Harrison | 2013-01-27 | 2 | -14/+14 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate lists of OrderedBins in RenderBin | Harvey Harrison | 2013-01-27 | 1 | -10/+9 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate textureBinList in RenderBin | Harvey Harrison | 2013-01-27 | 1 | -7/+6 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate list of Views in Physical body, call remove directly | Harvey Harrison | 2013-01-27 | 1 | -17/+12 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: always call Canvas3D freeDisplayList and freeTexture statically | Harvey Harrison | 2013-01-27 | 4 | -7/+7 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove an unused member variable from TextureBin | Harvey Harrison | 2013-01-27 | 1 | -7/+0 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove unused local variable from TextureBin | Harvey Harrison | 2013-01-27 | 1 | -8/+2 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: use correct types in the TextureBin render method to avoid instanceof | Harvey Harrison | 2013-01-27 | 1 | -30/+14 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate addMaps in TextureBin | Harvey Harrison | 2013-01-27 | 2 | -30/+27 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate Maps in TextureBin | Harvey Harrison | 2013-01-27 | 2 | -14/+14 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: push list annotation through some of RenderBin's internal functions | Harvey Harrison | 2013-01-27 | 1 | -12/+11 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate lists of change lightretained,fogretained and ↵ | Harvey Harrison | 2013-01-27 | 1 | -29/+28 |
| | | | | | | modelclipretained Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: use code formatter to cleanup insertNodes/RemoveNodes functions | Harvey Harrison | 2013-01-26 | 1 | -140/+156 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: trivial annotation for list of GeometryAtoms | Harvey Harrison | 2013-01-24 | 1 | -3/+2 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate scopes list for AlternateAppearance | Harvey Harrison | 2013-01-24 | 2 | -24/+23 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate list of View | Harvey Harrison | 2012-11-24 | 2 | -28/+25 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate view specific lists | Harvey Harrison | 2012-11-23 | 2 | -15/+13 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate AlternateAppearanceRetained list | Harvey Harrison | 2012-11-23 | 1 | -37/+34 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate list of ClipRetained | Harvey Harrison | 2012-11-23 | 1 | -21/+16 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate some BackGroundRetained lists | Harvey Harrison | 2012-11-23 | 1 | -31/+26 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove some trailing whitespace that snuck in | Harvey Harrison | 2012-11-23 | 3 | -8/+8 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: update version to -pre5 | Harvey Harrison | 2012-11-23 | 1 | -1/+1 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: cosmetic cleanup to setting the depthbuffer object | Harvey Harrison | 2012-11-23 | 1 | -5/+7 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: avoid null pointer when reading raster depth-only from Canvas3d | Julian Ibarz | 2012-11-23 | 1 | -5/+18 |
| | | | | | | | | | | | | | | | | | Taken from java3d issue 593: When I'm reading the z-buffer with a Raster, a NullPointerException occurs (in fact, two). This is because the image raster is accessed whereas is not initialized, and also because we send the depthComp to the native readRaster function instead of the real buffer (i named it depthBuffer). Also the destination offset is send to the native readRaster function instead of source offset. I made a very light patch that corrects this bugs. Signed-off-by: Julian Ibarz <[email protected]> Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: grab the maxFixedFunction profile once in the JOGLPipeline ↵ | Harvey Harrison | 2012-11-23 | 1 | -9/+7 |
| | | | | | | | | | initialization Doing it here will improve the chances it comes from a non-AWT thread which can lead to deadlock. Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove the fullscreen mode toggle used by D3D | Harvey Harrison | 2012-11-18 | 1 | -117/+5 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove more D3D leftovers in Canvas3D | Harvey Harrison | 2012-11-18 | 2 | -14/+0 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove last uses of isD3D | Harvey Harrison | 2012-11-18 | 3 | -32/+4 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: introduce a useAlpha helper to collapse some tricky logic | Harvey Harrison | 2012-11-18 | 5 | -38/+17 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove some more dead D3D code | Harvey Harrison | 2012-11-18 | 3 | -90/+68 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: simplify ModelClipRetained.update now that there is no D3d backend | Harvey Harrison | 2012-11-18 | 1 | -32/+7 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove some trivial uses of isD3D which is always false | Harvey Harrison | 2012-11-18 | 6 | -47/+2 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove all the texture resend code that was D3D specific | Harvey Harrison | 2012-11-18 | 3 | -31/+0 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove status from swapBuffers, was only used by the D3D backend | Harvey Harrison | 2012-11-18 | 5 | -65/+20 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: swapBuffer always returns NOCHANGE now, kill some dead code | Harvey Harrison | 2012-11-18 | 4 | -26/+13 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: fix fatal bug in Shape3DCompileRetained intersect() | Harvey Harrison | 2012-10-10 | 1 | -6/+4 |
| | | | | | | | | | This code must not be being triggered as the type annotation uncovered it mixing up Geometry and GeometryRetained, this likely looks like the Geometry should have been getting its .retained member used instead, do that here, it can't be any worse than what was there before. Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate the geometryList in Shape3DRetained | Harvey Harrison | 2012-10-09 | 5 | -76/+75 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: whitespace/formatting cleanup after patches to Shape3DCompileRetained | Harvey Harrison | 2012-10-09 | 1 | -53/+51 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: factor out another repetative block with a helper | Harvey Harrison | 2012-10-09 | 1 | -114/+49 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: factor out very repetative block of code to a helper | Harvey Harrison | 2012-10-09 | 1 | -98/+21 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: push some local variables down into the loops they are used in | Harvey Harrison | 2012-10-09 | 1 | -20/+18 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate repetative code in Shape3DcompileRetained constructor | Harvey Harrison | 2012-10-09 | 1 | -35/+35 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: reomve unused members of Shape3DCompileRetained | Harvey Harrison | 2012-10-09 | 1 | -3/+0 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: annotate geometryInfo list with type information in ↵ | Harvey Harrison | 2012-10-09 | 1 | -62/+53 |
| | | | | | | Shape3DCompileRetained Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove unused pieces of CompileState | Harvey Harrison | 2012-10-08 | 1 | -17/+4 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: add type annotation and small code reformat in CompileState | Harvey Harrison | 2012-10-08 | 1 | -36/+32 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: mark shapeLists hash as private final, add type annotations in ↵ | Harvey Harrison | 2012-10-08 | 1 | -16/+10 |
| | | | | | | CompileState Signed-off-by: Harvey Harrison <[email protected]> | ||||
* | j3dcore: remove some unused state from CompileState | Harvey Harrison | 2012-10-08 | 1 | -10/+0 |
| | | | | Signed-off-by: Harvey Harrison <[email protected]> |