Added FlushDeletedGLObjectsOperation.

This commit is contained in:
Robert Osfield
2007-07-23 16:42:25 +00:00
parent ff267d1ad6
commit 3eae87854b
2 changed files with 27 additions and 0 deletions

View File

@@ -96,6 +96,16 @@ struct OSG_EXPORT BlockAndFlushOperation : public GraphicsOperation, public Open
virtual void operator () (GraphicsContext*);
};
struct OSG_EXPORT FlushDeletedGLObjectsOperation : public GraphicsOperation
{
FlushDeletedGLObjectsOperation(double availableTime, bool keep=false);
virtual void operator () (GraphicsContext*);
double _availableTime;
};
}
#endif