Files
compute-runtime/shared/source/os_interface/linux/drm_debug.cpp
Mateusz Hoppe d363448515 Interfaces to register resources
Change-Id: Ic587aaa5a41e4e7648211cfa730a0aa5bbc2985a
Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2020-09-17 12:39:16 +02:00

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