Files
compute-runtime/shared/source/os_interface/windows/os_interface.h
kamdiedrich e072275ae6 Reorganization directory structure [3/n]
Change-Id: If3dfa3f6007f8810a6a1ae1a4f0c7da38544648d
2020-02-23 23:48:28 +01:00

43 lines
1.0 KiB
C++

/*
* Copyright (C) 2017-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "os_interface/os_interface.h"
#include "os_interface/windows/wddm/wddm.h"
#include "os_interface/windows/windows_wrapper.h"
#include "profileapi.h"
#include "umKmInc/sharedata.h"
#include <d3dkmthk.h>
#include <memory>
namespace NEO {
class Wddm;
class WddmMemoryOperationsHandler;
class OSInterface::OSInterfaceImpl {
public:
OSInterfaceImpl();
virtual ~OSInterfaceImpl() = default;
Wddm *getWddm() const;
void setWddm(Wddm *wddm);
D3DKMT_HANDLE getAdapterHandle() const;
D3DKMT_HANDLE getDeviceHandle() const;
PFND3DKMT_ESCAPE getEscapeHandle() const;
uint32_t getHwContextId() const;
MOCKABLE_VIRTUAL HANDLE createEvent(LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset, BOOL bInitialState,
LPCSTR lpName);
MOCKABLE_VIRTUAL BOOL closeHandle(HANDLE hObject);
protected:
std::unique_ptr<Wddm> wddm;
};
} // namespace NEO