Files
compute-runtime/shared/source/os_interface/windows/os_environment_win.cpp
Lukasz Jobczyk 13e053f538 Load GDI once
Resolves: NEO-4174

Change-Id: I465d6137deb1dac1146a5b28ff1c100823a1d6b6
Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
2020-03-19 11:13:30 +01:00

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