2020-01-27 20:06:03 +08:00
|
|
|
/*
|
2023-12-14 00:09:52 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-01-27 20:06:03 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-02-22 16:28:27 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2020-01-27 20:06:03 +08:00
|
|
|
namespace NEO {
|
|
|
|
|
2020-10-22 20:08:50 +08:00
|
|
|
enum class AuxTranslationDirection : uint32_t {
|
2023-12-14 00:09:52 +08:00
|
|
|
none,
|
|
|
|
auxToNonAux,
|
|
|
|
nonAuxToAux
|
2020-01-27 20:06:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class AuxTranslationMode : int32_t {
|
2023-12-14 00:09:52 +08:00
|
|
|
none = 0,
|
|
|
|
builtin = 1,
|
|
|
|
blit = 2
|
2020-01-27 20:06:03 +08:00
|
|
|
};
|
|
|
|
} // namespace NEO
|