mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 22:43:00 +08:00
refactor: correct naming of enum class constants 10/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
a6458433dc
commit
de93bc6928
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2021 Intel Corporation
|
||||
* Copyright (C) 2021-2023 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -10,9 +10,9 @@
|
||||
namespace NEO {
|
||||
|
||||
enum class LocalMemoryAccessMode {
|
||||
Default = 0,
|
||||
CpuAccessAllowed = 1,
|
||||
CpuAccessDisallowed = 3
|
||||
defaultMode = 0,
|
||||
cpuAccessAllowed = 1,
|
||||
cpuAccessDisallowed = 3
|
||||
};
|
||||
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user