#include <archon/render/view.H>
Inheritance diagram for Archon::Render::Renderer:
Public Member Functions | |
virtual void | initOpenGlContext ()=0 |
Called to initialize each an OpenGL rending context. | |
virtual void | render ()=0 |
Called to render your scene by each rendering context once each time you call Conductor::render. |
This includes: Conductor, Pipe, Viewport, Eye, Screen, Clip and View.
Definition at line 42 of file view.H.
|
Called to initialize each an OpenGL rending context. This is done before any calls are made to the render method of this class for the same OpenGL rending context. Exactly one call is made per OpenGL rending context. This method must be re-entrant. Implemented in Archon::Render::Test::MyRenderer. |
|
Called to render your scene by each rendering context once each time you call Conductor::render. This method must be re-entrant. Implemented in Archon::Render::Test::MyRenderer. |