#include <IRunner.h>
Public Member Functions | |
virtual void | InitializeOpengl (int width, int height)=0 |
Its used to configurate opengl. | |
virtual void | Run (void)=0 |
It executes the test. | |
virtual void | Reshape (int width, int height)=0 |
Callback notifies of render window reshape. | |
Protected Member Functions | |
IRunner (void) | |
It can't be constructed. | |
virtual | ~IRunner (void)=0 |
It can`t be destroyed. |
virtual void GlutWrapper::IRunner::InitializeOpengl | ( | int | width, | |
int | height | |||
) | [pure virtual] |
Its used to configurate opengl.
width | render window width | |
height | render window height |
Implemented in DelaunayTest::DelaunayTestRunner.
virtual void GlutWrapper::IRunner::Reshape | ( | int | width, | |
int | height | |||
) | [pure virtual] |
Callback notifies of render window reshape.
width | new render window width | |
height | new render window height |
Implemented in DelaunayTest::DelaunayTestRunner.