Home | History | Annotate | Download | only in renderer

Lines Matching defs:ViewPort

44  * A <code>ViewPort</code> represents a view inside the display
47 * A viewport has a {@link #ViewPort(java.lang.String, com.jme3.renderer.Camera) camera}
56 * A ViewPort has a list of {@link SceneProcessor}s which can
57 * control how the ViewPort is rendered by the {@link RenderManager}.
66 public class ViewPort {
80 * Create a new viewport. User code should generally use these methods instead:<br>
87 * @param name The name of the viewport. Used for debugging only.
88 * @param cam The camera through which the viewport is rendered. The camera
89 * cannot be swapped to a different one after creating the viewport.
91 public ViewPort(String name, Camera cam) {
97 * Returns the name of the viewport as set in the constructor.
99 * @return the name of the viewport
101 * @see #ViewPort(java.lang.String, com.jme3.renderer.Camera)
109 * added to this <code>ViewPort</code>
111 * @return the list of processors attached to this ViewPort
120 * Adds a {@link SceneProcessor} to this ViewPort.
122 * SceneProcessors that are added to the ViewPort will be notified
123 * of events as the ViewPort is being rendered by the {@link RenderManager}.
134 * Removes a {@link SceneProcessor} from this ViewPort.
136 * The processor will no longer receive events occurring to this ViewPort.
159 * Enable or disable clearing of the depth buffer for this ViewPort.
181 * Enable or disable clearing of the color buffer for this ViewPort.
203 * Enable or disable clearing of the stencil buffer for this ViewPort.
231 * Returns the framebuffer where this ViewPort's scenes are
234 * @return the framebuffer where this ViewPort's scenes are
244 * Sets the output framebuffer for the ViewPort.
247 * to this ViewPort are rendered to. By default this is <code>null</code>
276 * Attaches a new scene to render in this ViewPort.
320 * When the ViewPort's color buffer is cleared
332 * Returns the background color of this ViewPort
334 * @return the background color of this ViewPort
343 * Enable or disable this ViewPort.
348 * @param enable If the viewport should be disabled or enabled.
355 * Returns true if the viewport is enabled, false otherwise.
356 * @return true if the viewport is enabled, false otherwise.