Navigation
API > API/Plugins > API/Plugins/ComputeFramework
Flags that convey kernel behavior to aid compilation/optimizations.
| Name | EComputeKernelFlags |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/ComputeFramework/Source/ComputeFramework/Public/ComputeFramework/ComputeKernel.h |
| Include Path | #include "ComputeFramework/ComputeKernel.h" |
Syntax
enum EComputeKernelFlags
{
IsDefaultKernel = 1 << 0,
IsolatedMemoryWrites = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| IsDefaultKernel | Default implies that this kernel must be compiled before the system is functional. |
| IsolatedMemoryWrites | Promise from the author that all memory writes will be unique per shader dispatch thread. |