Name

OfxProgressSuiteV1 — A suite that provides progress feedback from a plugin to an application

Synopsis

#include "ofxProgress.h"
typedef struct OfxProgressSuiteV1 {  
  OfxStatus (*progressStart)(void *effectInstance,
                             const char *label);
  OfxStatus (*progressUpdate)(void *effectInstance, double progress);
  OfxStatus (*progressEnd)(void *effectInstance);
} OfxProgressSuiteV1 ;

Description

A plugin instance can initiate, update and close a progress indicator with this suite.

This is an optional suite in the Image Effect API.