mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
26 lines
421 B
C++
26 lines
421 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/os_interface/windows/windows_defs.h"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
struct WddmSubmitArguments {
|
|
MonitoredFence *monitorFence;
|
|
D3DKMT_HANDLE contextHandle;
|
|
D3DKMT_HANDLE hwQueueHandle;
|
|
};
|
|
|
|
enum class WddmVersion : uint32_t {
|
|
wddm20 = 0,
|
|
wddm23
|
|
};
|
|
} // namespace NEO
|