TuttleOFX
1
|
Suite to control timelines. More...
#include <ofxTimeLine.h>
Data Fields | |
OfxStatus(* | getTime )(void *instance, double *time) |
Get the time value of the timeline that is controlling to the indicated effect. | |
OfxStatus(* | gotoTime )(void *instance, double time) |
Move the timeline control to the indicated time. | |
OfxStatus(* | getTimeBounds )(void *instance, double *firstTime, double *lastTime) |
Get the current bounds on a timeline. |
Suite to control timelines.
This suite is used to enquire and control a timeline associated with a plug-in instance.
This is an optional suite in the Image Effect API.
Definition at line 45 of file ofxTimeLine.h.
OfxStatus( * OfxTimeLineSuiteV1::getTime)(void *instance, double *time) |
Get the time value of the timeline that is controlling to the indicated effect.
This function returns the current time value of the timeline associated with the effect instance.
Definition at line 59 of file ofxTimeLine.h.
OfxStatus( * OfxTimeLineSuiteV1::getTimeBounds)(void *instance, double *firstTime, double *lastTime) |
Get the current bounds on a timeline.
This function
Definition at line 91 of file ofxTimeLine.h.
Referenced by OFX::ImageEffect::timeLineGetBounds().
OfxStatus( * OfxTimeLineSuiteV1::gotoTime)(void *instance, double time) |
Move the timeline control to the indicated time.
This function moves the timeline to the indicated frame and returns. Any side effects of the timeline change are also triggered and completed before this returns (for example instance changed actions and renders if the output of the effect is being viewed).
Definition at line 76 of file ofxTimeLine.h.
Referenced by OFX::ImageEffect::timeLineGotoTime().