mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
17 lines
240 B
C
17 lines
240 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
enum class MemoryCompressionState {
|
||
|
|
Disabled = 0x0u,
|
||
|
|
Enabled = 0x1u,
|
||
|
|
NotApplicable = 0x2u
|
||
|
|
};
|
||
|
|
} // namespace NEO
|