Files
compute-runtime/core/helpers/aux_translation.h
Mateusz Hoppe a2b123a058 Pass CsrDependencies from events to BlitProperties
- move files to core
- extract struct and enums to headers

Change-Id: Id5509f284dfa9ffc5e5d9173124af8a860f5a6f4
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2020-01-28 12:31:59 +01:00

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