Files
compute-runtime/shared/source/helpers/aux_translation.h
Mateusz Jablonski dd1b9d6abc refactor: correct naming of enum class constants 8/n
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2023-12-19 08:18:18 +01:00

26 lines
345 B
C++

/*
* Copyright (C) 2020-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
enum class AuxTranslationDirection : uint32_t {
none,
auxToNonAux,
nonAuxToAux
};
enum class AuxTranslationMode : int32_t {
none = 0,
builtin = 1,
blit = 2
};
} // namespace NEO