2024-09-11 09:31:36 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2024 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
namespace IndirectDetectionVersions {
|
2024-12-03 12:29:14 +00:00
|
|
|
constexpr uint32_t disabled = std::numeric_limits<uint32_t>::max();
|
|
|
|
|
constexpr uint32_t requiredDetectIndirectVersionPVC = disabled;
|
2024-10-07 12:45:00 +00:00
|
|
|
constexpr uint32_t requiredDetectIndirectVersionBindless = 4u;
|
|
|
|
|
constexpr uint32_t requiredDetectIndirectVersionVectorCompiler = 6u;
|
2024-09-13 13:52:55 +00:00
|
|
|
} // namespace IndirectDetectionVersions
|
2024-09-11 09:31:36 +00:00
|
|
|
} // namespace NEO
|