mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
17 lines
245 B
C++
17 lines
245 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
enum class MemoryCompressionState {
|
|
disabled = 0x0u,
|
|
enabled = 0x1u,
|
|
notApplicable = 0x2u
|
|
};
|
|
} // namespace NEO
|