mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 05:24:02 +08:00
Related-To: NEO-3008 Change-Id: I2a4d21bfa1f078b5da2f893bdb7554d502df8522 Signed-off-by: Piotr Fusik <piotr.fusik@intel.com>
23 lines
270 B
C++
23 lines
270 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "drm_neo.h"
|
|
|
|
namespace NEO {
|
|
|
|
void *Drm::query(uint32_t queryId) {
|
|
return nullptr;
|
|
}
|
|
|
|
void Drm::queryEngineInfo() {
|
|
}
|
|
|
|
void Drm::queryMemoryInfo() {
|
|
}
|
|
|
|
} // namespace NEO
|