LinuxFramebufferPlatformOptions Class
Definition
Platform-specific options which apply to the Linux framebuffer.
public class LinuxFramebufferPlatformOptions
Constructors
| Name | Description |
|---|---|
| LinuxFramebufferPlatformOptions | No summary available. |
LinuxFramebufferPlatformOptions Constructor
public LinuxFramebufferPlatformOptions()
Properties
| Name | Description |
|---|---|
| Fps | Gets or sets the number of frames per second at which the renderer should run. Default 60. |
| ShouldRenderOnUIThread | Render directly on the UI thread instead of using a dedicated render thread. This can be usable if your device don't have multiple cores to begin with. This setting is false by default. |
Fps Property
Gets or sets the number of frames per second at which the renderer should run. Default 60.
public int Fps { get; set; }
ShouldRenderOnUIThread Property
Render directly on the UI thread instead of using a dedicated render thread. This can be usable if your device don't have multiple cores to begin with. This setting is false by default.
public bool ShouldRenderOnUIThread { get; set; }