Specifies various settings to change during a reset call.
Namespace:
Internal.SharpBgfx
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax [FlagsAttribute]
public enum ResetFlags
Members
| Member name | Value | Description |
---|
| None | 0 |
No features to change.
|
| Fullscreen | 1 |
Not yet supported.
|
| MSAA2x | 16 |
Enable 2x multisampling.
|
| MSAA4x | 32 |
Enable 4x multisampling.
|
| MSAA8x | 48 |
Enable 8x multisampling.
|
| MSAA16x | 64 |
Enable 16x multisampling.
|
| Vsync | 128 |
Enable v-sync.
|
| MaxAnisotropy | 256 |
Use the maximum anisotropic filtering level available.
|
| Capture | 512 |
Begin screen capture.
|
| FlushAfterRender | 8192 |
Flush all commands to the device after rendering.
|
| FlipAfterRender | 16384 |
Flip the backbuffer immediately after rendering for reduced latency.
Only useful when multithreading is disabled.
|
| SrgbBackbuffer | 32768 |
Write data to the backbuffer in non-linear sRGB format.
|
| HDR10 | 65536 |
Enable HDR10 rendering.
|
| HighDPI | 131072 |
Enable High-DPI rendering.
|
| DepthClamp | 262144 |
Enables depth clamping.
|
| Suspend | 524288 |
Suspends rendering.
|
See Also