mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:20:26 +08:00
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
355 B
C++
17 lines
355 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/gmm_helper/client_context/gmm_client_context_base.h"
|
|
|
|
namespace NEO {
|
|
class GmmClientContext : public GmmClientContextBase {
|
|
public:
|
|
GmmClientContext(OSInterface *osInterface, HardwareInfo *hwInfo);
|
|
};
|
|
} // namespace NEO
|