mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 20:13:04 +08:00
use new interface from gmmlib 19.4.1 Change-Id: Ie07bd9e9533c01ef06c67a4059a278850e365f07 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
14 lines
407 B
C++
14 lines
407 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "mock_gmm_client_context.h"
|
|
|
|
namespace NEO {
|
|
MockGmmClientContext::MockGmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo, decltype(&InitializeGmm) initFunc, decltype(&GmmAdapterDestroy) destroyFunc) : MockGmmClientContextBase(osInterface, hwInfo, initFunc, destroyFunc) {
|
|
}
|
|
} // namespace NEO
|