mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Change-Id: Ic587aaa5a41e4e7648211cfa730a0aa5bbc2985a Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
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
|