mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 03:01:20 +08:00
18 lines
281 B
C++
18 lines
281 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
namespace DrmQueryItemFlags {
|
|
constexpr uint32_t empty = 0;
|
|
constexpr uint32_t topology = 0;
|
|
} // namespace DrmQueryItemFlags
|
|
} // namespace NEO
|