compute-runtime/shared/source/command_stream/memory_compression_state.h

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