2020-12-17 08:36:45 +08:00
|
|
|
/*
|
2023-11-30 18:36:43 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-12-17 08:36:45 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
enum class MemoryCompressionState {
|
2023-11-30 18:36:43 +08:00
|
|
|
disabled = 0x0u,
|
|
|
|
enabled = 0x1u,
|
|
|
|
notApplicable = 0x2u
|
2020-12-17 08:36:45 +08:00
|
|
|
};
|
|
|
|
} // namespace NEO
|