1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/*
* Modification History
*
* 2001-February-4 Jason Rohrer
* Created.
*/
#ifndef REDRAW_LISTENER_GL_INCLUDED
#define REDRAW_LISTENER_GL_INCLUDED
/**
* Interface for an object that will be called at the beginning of
* every openGL redraw.
*
* @author Jason Rohrer
*/
class RedrawListenerGL {
public:
/**
* Tells the redraw listener that a redraw is occuring.
*
* Note that the redraw operation waits for this call to return
* before proceeding.
*/
virtual void fireRedraw() = 0;
};
#endif
|