mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 15:53:13 +08:00
Change-Id: I341925eef9bc892f5c321c668736bb6a3aff38f5 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
22 lines
335 B
C++
22 lines
335 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/os_context.h"
|
|
|
|
namespace OCLRT {
|
|
class Drm;
|
|
using OsContextLinux = OsContext::OsContextImpl;
|
|
|
|
class OsContext::OsContextImpl {
|
|
public:
|
|
OsContextImpl(Drm &drm);
|
|
|
|
protected:
|
|
Drm &drm;
|
|
};
|
|
} // namespace OCLRT
|