Interface SiRenderAreaStillSuperSampling
-
- All Known Implementing Classes:
SoRenderAreaCore
public interface SiRenderAreaStillSuperSampling
RenderArea still supersampling interface. This interface provides the list of methods that renderAreas must define to use still supersampling feature.- See Also:
SoRenderAreaCore
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getStillSuperSamplingDelay()
float
getStillSuperSamplingQuality()
void
setStillSuperSamplingDelay(int delay)
Set delay for supersampling when "still" (not interacting).void
setStillSuperSamplingQuality(float quality)
Set quality for supersampling when "still" (not interacting).
-
-
-
Method Detail
-
setStillSuperSamplingQuality
void setStillSuperSamplingQuality(float quality)
Set quality for supersampling when "still" (not interacting). When quality is greater than 0, still images will be automatically supersampled.
-
getStillSuperSamplingDelay
int getStillSuperSamplingDelay()
- See Also:
setStillSuperSamplingDelay()
-
getStillSuperSamplingQuality
float getStillSuperSamplingQuality()
- See Also:
setStillSuperSamplingQuality()
-
setStillSuperSamplingDelay
void setStillSuperSamplingDelay(int delay)
Set delay for supersampling when "still" (not interacting). If greater than 0, images will be supersampled after the specified delay. The delay is in milliseconds.
-
-