Abstract base class for remote parameter setup. More...
#include <ScaleViz/nodes/SoRemoteParams.h>
Public Types | |
enum | HullOptimization { HULL_ALWAYS, HULL_LOSSY, HULL_NEVER } |
enum | LossyMode { ALWAYS, INTERACTIVE, NEVER } |
enum | NetworkSpeedMode { SLOW, MEDIUM, FAST, LOCAL } |
Public Member Functions | |
virtual SoType | getTypeId () const |
SoRemoteParams () | |
Static Public Member Functions | |
static SoType | getClassTypeId () |
Public Attributes | |
SoSFEnum | hullOptimization |
SoSFEnum | networkSpeed |
SoSFShort | lossyQuality |
SoSFEnum | lossyMode |
SoRemoteParams class is the abstract base class for remote parameter setup.
networkSpeed | FAST |
lossyQuality | 100 |
lossyMode | INTERACTIVE |
hullOptimization | HULL_LOSSY |
SoRemoteParams::SoRemoteParams | ( | ) |
Constructor.
static SoType SoRemoteParams::getClassTypeId | ( | ) | [static] |
Returns the type identifier for this class.
Reimplemented from SoNode.
virtual SoType SoRemoteParams::getTypeId | ( | ) | const [virtual] |
Returns the type identifier for this specific instance.
Reimplemented from SoNode.
Specify the when to use hull optimization.
Use enum HullOptimization. Default is HULL_LOSSY. Hull optimization specifies to send only the portion of the image that really contains graphics entities (non background pixels).
Indicates when the lossyQuality parameter is taken into account when doing remote rendering/compositing on a ScaleViz cluster.
Possible values are: ALWAYS, INTERACTIVE, and NEVER. Use enum LossyMode. Default is INTERACTIVE.
Indicates the percentage of lossy filtering to use when doing remote rendering/compositing on a ScaleViz cluster.
Higher numbers correspond to better quality. Default is 100%, i.e., no lossy filtering.
Indicates the quality of the network between the application and the cluster when doing remote rendering/compositing on a ScaleViz cluster.
It allows the appropriate level of compression to be selected for remote frame and synchronization messages. Possible values are: SLOW, MEDIUM, FAST, and LOCAL. Use enum NetworkSpeedMode. Default is FAST.