mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-04 07:14:10 +08:00
refactor: correct naming of enum class constants 4/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
01dd503e47
commit
432142c574
@@ -24,19 +24,19 @@ struct ResidencyData;
|
||||
constexpr int maxFragmentsCount = 3;
|
||||
|
||||
enum class FragmentPosition {
|
||||
NONE = 0,
|
||||
LEADING,
|
||||
MIDDLE,
|
||||
TRAILING
|
||||
none = 0,
|
||||
leading,
|
||||
middle,
|
||||
trailing
|
||||
};
|
||||
|
||||
enum class RequirementsStatus {
|
||||
SUCCESS = 0,
|
||||
FATAL
|
||||
success = 0,
|
||||
fatal
|
||||
};
|
||||
|
||||
struct PartialAllocation {
|
||||
FragmentPosition fragmentPosition = FragmentPosition::NONE;
|
||||
FragmentPosition fragmentPosition = FragmentPosition::none;
|
||||
const void *allocationPtr = nullptr;
|
||||
size_t allocationSize = 0u;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user