mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 00:03:14 +08:00
27 lines
430 B
C++
27 lines
430 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "drm_neo.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool Drm::registerResourceClasses() {
|
|
return false;
|
|
}
|
|
|
|
uint32_t Drm::registerResource(ResourceClass classType, const void *data, size_t size) {
|
|
return 0;
|
|
}
|
|
|
|
uint32_t Drm::registerIsaCookie(uint32_t isaHandle) {
|
|
return 0;
|
|
}
|
|
|
|
void Drm::unregisterResource(uint32_t handle) {
|
|
}
|
|
} // namespace NEO
|