mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
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
|