mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Resolves: NEO-4174 Change-Id: I465d6137deb1dac1146a5b28ff1c100823a1d6b6 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
15 lines
371 B
C++
15 lines
371 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/os_environment_win.h"
|
|
|
|
#include "shared/source/os_interface/windows/gdi_interface.h"
|
|
|
|
namespace NEO {
|
|
OsEnvironmentWin::OsEnvironmentWin() : gdi(std::make_unique<Gdi>()){};
|
|
OsEnvironmentWin::~OsEnvironmentWin() = default;
|
|
} // namespace NEO
|