Files
compute-runtime/shared/source/command_stream/memory_compression_state.h
Mateusz Jablonski c3ac7b78bd refactor: correct variable naming
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2023-12-01 02:18:46 +01:00

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