mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 17:00:59 +08:00
Change-Id: I536ff342875bba39cf9a9922fcf647af408ae398 Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
19 lines
440 B
C++
19 lines
440 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/linux/drm_allocation.h"
|
|
#include "shared/source/os_interface/linux/drm_buffer_object.h"
|
|
|
|
namespace NEO {
|
|
|
|
void DrmAllocation::bindBOs(uint32_t vmHandleId, std::vector<BufferObject *> *bufferObjects, bool bind) {
|
|
auto bo = this->getBO();
|
|
bindBO(bo, vmHandleId, bufferObjects, bind);
|
|
}
|
|
|
|
} // namespace NEO
|