Revision f1a82766
Added by Leszek Koltunski over 8 years ago
| src/main/java/org/distorted/library/main/DistortedNode.java | ||
|---|---|---|
| 675 | 675 |
return mSurface; |
| 676 | 676 |
} |
| 677 | 677 |
|
| 678 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
|
| 679 |
/** |
|
| 680 |
* Returns the Mesh object that's in the Node. |
|
| 681 |
* |
|
| 682 |
* @return Mesh contained in the Node. |
|
| 683 |
*/ |
|
| 684 |
public MeshObject getMesh() |
|
| 685 |
{
|
|
| 686 |
return mMesh; |
|
| 687 |
} |
|
| 688 |
|
|
| 678 | 689 |
/////////////////////////////////////////////////////////////////////////////////////////////////// |
| 679 | 690 |
/** |
| 680 | 691 |
* Resizes the DistortedFramebuffer object that we render this Node to. |
| src/main/java/org/distorted/library/main/DistortedOutputSurface.java | ||
|---|---|---|
| 400 | 400 |
numRenders += mChildren.get(i).renderRecursive(time); |
| 401 | 401 |
} |
| 402 | 402 |
|
| 403 |
setAsOutput(time); |
|
| 404 | 403 |
numRenders += renderChildren(time,mNumChildren,mChildren); |
| 405 | 404 |
|
| 406 | 405 |
if( mDebugLevel != 0 ) renderDebug(time); |
Also available in: Unified diff
Minor.