2#include <UnCompute/Base/Flags.h>
7 enum class HardwareQueueKindFlags
11 GraphicsBit = UN_BIT(0),
12 ComputeBit = UN_BIT(1),
13 TransferBit = UN_BIT(2),
16 Graphics = GraphicsBit | ComputeBit | TransferBit,
18 Compute = ComputeBit | TransferBit,
20 Transfer = TransferBit
23 UN_ENUM_OPERATORS(HardwareQueueKindFlags);