mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 14:02:58 +08:00
- move files to core - extract struct and enums to headers Change-Id: Id5509f284dfa9ffc5e5d9173124af8a860f5a6f4 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
23 lines
295 B
C++
23 lines
295 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
|
|
enum class AuxTranslationDirection {
|
|
None,
|
|
AuxToNonAux,
|
|
NonAuxToAux
|
|
};
|
|
|
|
enum class AuxTranslationMode : int32_t {
|
|
Builtin = 0,
|
|
Blit = 1
|
|
};
|
|
} // namespace NEO
|