mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
26 lines
420 B
C++
26 lines
420 B
C++
/*
|
|
* Copyright (C) 2020 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 {
|
|
WDDM_2_0 = 0,
|
|
WDDM_2_3
|
|
};
|
|
} // namespace NEO
|