mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
21 lines
351 B
C++
21 lines
351 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, void *data, size_t size) {
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
void Drm::unregisterResource(uint32_t handle) {
|
||
|
|
}
|
||
|
|
} // namespace NEO
|