mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
21 lines
278 B
C
21 lines
278 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2024 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef _XE_DRM_H_
|
||
|
|
#include <linux/types.h>
|
||
|
|
#include <sys/ioctl.h>
|
||
|
|
namespace NEO {
|
||
|
|
namespace XeDrm {
|
||
|
|
#include "xe_drm.h"
|
||
|
|
}
|
||
|
|
} // namespace NEO
|
||
|
|
using namespace NEO::XeDrm;
|
||
|
|
|
||
|
|
#endif
|