![]() | |
Scene |
SupersamplingCount gets the super-sampling count (SSAA) that is used by this SceneView.
Super-sampling count defines how many more pixels are rendered for each final pixel.
This value can be set when calling Initialize method or after the SceneView is initialized by calling the Resize method.
When SSAA is more than 1, then the rendering is done on a scaled texture that has SupersamplingCount-times more pixels that the final texture (width and height are scaled by the SupersamplingFactor and set to RenderWidth and RenderHeight) At the end of the rendering this super-scaled texture is down-sampled into the texture with the final size (defined by Width and Height).
Value 4 means that width and height are multiplied by 2 and this produces a texture with 4 times as many pixels. Value 2 means that width and height are multiplied by 1.41 (sqrt(2) = 1.41) and this produces a texture with 2 times as many pixels.
Default value is 1 (no super-sampling).