VTK
|
synchronizes render windows across processes. More...
#include <vtkSynchronizedRenderWindows.h>
Classes | |
struct | RenderWindowInfo |
Public Types | |
enum | { SYNC_RENDER_TAG = 15001 } |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. More... | |
vtkSynchronizedRenderWindows * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | SetRenderEventPropagation (bool) |
virtual bool | GetRenderEventPropagation () |
virtual void | RenderEventPropagationOn () |
virtual void | RenderEventPropagationOff () |
virtual void | AbortRender () |
This method call be called while a render is in progress to abort the rendering. More... | |
void | SetRenderWindow (vtkRenderWindow *) |
Set the render window to be synchronized by this vtkSynchronizedRenderWindows instance. More... | |
virtual vtkRenderWindow * | GetRenderWindow () |
Set the render window to be synchronized by this vtkSynchronizedRenderWindows instance. More... | |
void | SetParallelController (vtkMultiProcessController *) |
Set the parallel message communicator. More... | |
virtual vtkMultiProcessController * | GetParallelController () |
Set the parallel message communicator. More... | |
void | SetIdentifier (unsigned int id) |
It's acceptable to have multiple instances on vtkSynchronizedRenderWindows on each processes to synchronize different render windows. More... | |
virtual unsigned int | GetIdentifier () |
It's acceptable to have multiple instances on vtkSynchronizedRenderWindows on each processes to synchronize different render windows. More... | |
virtual void | SetParallelRendering (bool) |
Enable/Disable parallel rendering. More... | |
virtual bool | GetParallelRendering () |
Enable/Disable parallel rendering. More... | |
virtual void | ParallelRenderingOn () |
Enable/Disable parallel rendering. More... | |
virtual void | ParallelRenderingOff () |
Enable/Disable parallel rendering. More... | |
virtual void | SetRootProcessId (int) |
Get/Set the root-process id. More... | |
virtual int | GetRootProcessId () |
Get/Set the root-process id. More... | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. More... | |
virtual void | DebugOff () |
Turn debugging output off. More... | |
bool | GetDebug () |
Get the value of the debug flag. More... | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. More... | |
virtual void | Modified () |
Update the modification time for this object. More... | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. More... | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More... | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. More... | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. More... | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. More... | |
virtual void | Delete () |
Delete a VTK object. More... | |
virtual void | FastDelete () |
Delete a reference to this object. More... | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. More... | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). More... | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). More... | |
int | GetReferenceCount () |
Return the current reference count of this object. More... | |
void | SetReferenceCount (int) |
Sets the reference count. More... | |
void | PrintRevisions (ostream &) |
Legacy. More... | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. More... | |
Static Public Member Functions | |
static vtkSynchronizedRenderWindows * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkSynchronizedRenderWindows * | SafeDownCast (vtkObjectBase *o) |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. More... | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. More... | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. More... | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More... | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkSynchronizedRenderWindows () | |
~vtkSynchronizedRenderWindows () override | |
virtual void | HandleStartRender () |
virtual void | HandleEndRender () |
virtual void | HandleAbortRender () |
virtual void | MasterStartRender () |
virtual void | SlaveStartRender () |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. More... | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. More... | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | CollectRevisions (ostream &) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Protected Attributes | |
unsigned int | Identifier |
bool | ParallelRendering |
bool | RenderEventPropagation |
int | RootProcessId |
vtkRenderWindow * | RenderWindow |
vtkMultiProcessController * | ParallelController |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
vtkAtomicInt32 | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Friends | |
class | vtkObserver |
synchronizes render windows across processes.
vtkSynchronizedRenderWindows is used to synchronize render windows across processes for parallel rendering.
Definition at line 38 of file vtkSynchronizedRenderWindows.h.
Definition at line 42 of file vtkSynchronizedRenderWindows.h.
anonymous enum |
Enumerator | |
---|---|
SYNC_RENDER_TAG |
Definition at line 114 of file vtkSynchronizedRenderWindows.h.
|
protected |
|
overrideprotected |
|
static |
|
static |
|
virtual |
Return 1 if this class is the same type of (or a subclass of) the named class.
Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObjectBase.
|
static |
|
protectedvirtual |
vtkSynchronizedRenderWindows* vtkSynchronizedRenderWindows::NewInstance | ( | ) | const |
|
overridevirtual |
void vtkSynchronizedRenderWindows::SetRenderWindow | ( | vtkRenderWindow * | ) |
Set the render window to be synchronized by this vtkSynchronizedRenderWindows instance.
A vtkSynchronizedRenderWindows can be used to synchronize exactly 1 vtkRenderWindow on each process.
|
virtual |
Set the render window to be synchronized by this vtkSynchronizedRenderWindows instance.
A vtkSynchronizedRenderWindows can be used to synchronize exactly 1 vtkRenderWindow on each process.
void vtkSynchronizedRenderWindows::SetParallelController | ( | vtkMultiProcessController * | ) |
Set the parallel message communicator.
This is used to communicate among processes.
|
virtual |
Set the parallel message communicator.
This is used to communicate among processes.
void vtkSynchronizedRenderWindows::SetIdentifier | ( | unsigned int | id | ) |
It's acceptable to have multiple instances on vtkSynchronizedRenderWindows on each processes to synchronize different render windows.
In that case there's no way to each of the vtkSynchronizedRenderWindows instance to know how they correspond across processes. To enable that identification, a vtkSynchronizedRenderWindows can be assigned a unique id. All vtkSynchronizedRenderWindows across different processes that have the same id are "linked" together for synchronization. It's critical that the id is set before any rendering happens.
|
virtual |
It's acceptable to have multiple instances on vtkSynchronizedRenderWindows on each processes to synchronize different render windows.
In that case there's no way to each of the vtkSynchronizedRenderWindows instance to know how they correspond across processes. To enable that identification, a vtkSynchronizedRenderWindows can be assigned a unique id. All vtkSynchronizedRenderWindows across different processes that have the same id are "linked" together for synchronization. It's critical that the id is set before any rendering happens.
|
virtual |
Enable/Disable parallel rendering.
Unless ParallelRendering is ON, no synchronization of vtkRenderWindow::Render() calls between processes happens. ON by default.
|
virtual |
Enable/Disable parallel rendering.
Unless ParallelRendering is ON, no synchronization of vtkRenderWindow::Render() calls between processes happens. ON by default.
|
virtual |
Enable/Disable parallel rendering.
Unless ParallelRendering is ON, no synchronization of vtkRenderWindow::Render() calls between processes happens. ON by default.
|
virtual |
Enable/Disable parallel rendering.
Unless ParallelRendering is ON, no synchronization of vtkRenderWindow::Render() calls between processes happens. ON by default.
|
virtual |
|
virtual |
|
virtual |
|
virtual |
|
virtual |
This method call be called while a render is in progress to abort the rendering.
It should be called on the root node (or client).
|
virtual |
Get/Set the root-process id.
This is required when the ParallelController is a vtkSocketController. Set to 0 by default (which will not work when using a vtkSocketController but will work for vtkMPIController).
|
virtual |
Get/Set the root-process id.
This is required when the ParallelController is a vtkSocketController. Set to 0 by default (which will not work when using a vtkSocketController but will work for vtkMPIController).
|
protectedvirtual |
|
inlineprotectedvirtual |
Definition at line 139 of file vtkSynchronizedRenderWindows.h.
|
inlineprotectedvirtual |
Definition at line 140 of file vtkSynchronizedRenderWindows.h.
|
protectedvirtual |
|
protectedvirtual |
|
friend |
Definition at line 159 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 145 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 146 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 147 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 148 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 150 of file vtkSynchronizedRenderWindows.h.
|
protected |
Definition at line 151 of file vtkSynchronizedRenderWindows.h.