2019-03-19 20:53:55 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "drm_neo.h"
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2019-03-19 20:53:55 +08:00
|
|
|
|
2019-04-30 19:09:49 +08:00
|
|
|
void *Drm::query(uint32_t queryId) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Drm::queryEngineInfo() {
|
|
|
|
}
|
|
|
|
|
2019-03-19 20:53:55 +08:00
|
|
|
void Drm::queryMemoryInfo() {
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|