Navigation
API > API/Plugins > API/Plugins/MutableRuntime > API/Plugins/MutableRuntime/MuR
References
| Module | MutableRuntime |
| Header | /Engine/Plugins/Experimental/Mutable/Source/MutableRuntime/Public/MuR/System.h |
| Include | #include "MuR/System.h" |
Syntax
namespace mu
{
enum EExecutionStrategy
{
None = 0,
MinimizeMemory,
MaximizeConcurrency,
Count,
}
}
Values
| Name | Description |
|---|---|
| None | Undefined. |
| MinimizeMemory | Always try to run operations that reduce working memory first. |
| MaximizeConcurrency | Always try to run operations that unlock more operations first. |
| Count | Utility value with the number of error types. |
Remarks
Remove when removin deprecated data.
This define enabled additional checks when using RLE compression. These checks have a lot of of overhead so it should usually be disabled.
TODO: Make the handling of rotations an option. It is more expensive on CPU and memory, and for some cases it is not required at all.