Class AwtPanel

All Implemented Interfaces:
SceneProcessor, ImageObserver, MenuContainer, Serializable, Accessible

public class AwtPanel extends Canvas implements SceneProcessor
See Also:
  • Constructor Details Link icon

    • AwtPanel Link icon

      public AwtPanel(PaintMode paintMode)
    • AwtPanel Link icon

      public AwtPanel(PaintMode paintMode, boolean srgb)
  • Method Details Link icon

    • addNotify Link icon

      public void addNotify()
      Overrides:
      addNotify in class Canvas
    • removeNotify Link icon

      public void removeNotify()
      Overrides:
      removeNotify in class Component
    • paint Link icon

      public void paint(Graphics g)
      Overrides:
      paint in class Canvas
    • checkVisibilityState Link icon

      public boolean checkVisibilityState()
    • repaintInThread Link icon

      public void repaintInThread()
    • drawFrameInThread Link icon

      public void drawFrameInThread()
    • isActiveDrawing Link icon

      public boolean isActiveDrawing()
    • attachTo Link icon

      public void attachTo(boolean overrideMainFramebuffer, ViewPort... vps)
    • initialize Link icon

      public void initialize(RenderManager rm, ViewPort vp)
      Description copied from interface: SceneProcessor
      Called in the render thread to initialize the scene processor.
      Specified by:
      initialize in interface SceneProcessor
      Parameters:
      rm - The render manager to which the SP was added to
      vp - The viewport to which the SP is assigned
    • isInitialized Link icon

      public boolean isInitialized()
      Specified by:
      isInitialized in interface SceneProcessor
      Returns:
      True if initialize() has been called on this SceneProcessor, false if otherwise.
    • preFrame Link icon

      public void preFrame(float tpf)
      Description copied from interface: SceneProcessor
      Called before a frame
      Specified by:
      preFrame in interface SceneProcessor
      Parameters:
      tpf - Time per frame
    • postQueue Link icon

      public void postQueue(RenderQueue rq)
      Description copied from interface: SceneProcessor
      Called after the scene graph has been queued, but before it is flushed.
      Specified by:
      postQueue in interface SceneProcessor
      Parameters:
      rq - The render queue
    • invalidate Link icon

      public void invalidate()
      Overrides:
      invalidate in class Component
    • postFrame Link icon

      public void postFrame(FrameBuffer out)
      Description copied from interface: SceneProcessor
      Called after a frame has been rendered and the queue flushed.
      Specified by:
      postFrame in interface SceneProcessor
      Parameters:
      out - The FB to which the scene was rendered.
    • reshape Link icon

      public void reshape(ViewPort vp, int w, int h)
      Description copied from interface: SceneProcessor
      Called when the resolution of the viewport has been changed.
      Specified by:
      reshape in interface SceneProcessor
      Parameters:
      vp - the affected ViewPort
      w - the new width (in pixels)
      h - the new height (in pixels)
    • cleanup Link icon

      public void cleanup()
      Description copied from interface: SceneProcessor
      Called when the SP is removed from the RM.
      Specified by:
      cleanup in interface SceneProcessor
    • setProfiler Link icon

      public void setProfiler(AppProfiler profiler)
      Description copied from interface: SceneProcessor
      Sets a profiler Instance for this processor.
      Specified by:
      setProfiler in interface SceneProcessor
      Parameters:
      profiler - the profiler instance.