|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||
public interface SceneProcessor
Scene processors are used to compute/render things before and after the classic render of the scene. They have to be added to a viewport and are rendered in the order they've been added
| メソッドの概要 | |
|---|---|
void |
cleanup()
Called when the SP is removed from the RM. |
void |
initialize(RenderManager rm,
ViewPort vp)
Called in the render thread to initialize the scene processor. |
boolean |
isInitialized()
|
void |
postFrame(FrameBuffer out)
Called after a frame has been rendered and the queue flushed. |
void |
postQueue(RenderQueue rq)
Called after the scene graph has been queued, but before it is flushed. |
void |
preFrame(float tpf)
Called before a frame |
void |
reshape(ViewPort vp,
int w,
int h)
Called when the resolution of the viewport has been changed. |
| メソッドの詳細 |
|---|
void initialize(RenderManager rm,
ViewPort vp)
rm - The render manager to which the SP was added tovp - The viewport to which the SP is assigned
void reshape(ViewPort vp,
int w,
int h)
vp - boolean isInitialized()
void preFrame(float tpf)
tpf - Time per framevoid postQueue(RenderQueue rq)
rq - The render queuevoid postFrame(FrameBuffer out)
out - The FB to which the scene was rendered.void cleanup()
|
||||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | |||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | |||||||||