mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Cleaned up files: opencl/source/api/api.h opencl/source/os_interface/windows/d3d_sharing_functions.h opencl/test/unit_test/aub_tests/command_stream/aub_mem_dump_tests.h opencl/test/unit_test/fixtures/ult_command_stream_receiver_fixture.h shared/source/os_interface/linux/device_time_drm.h shared/source/os_interface/linux/os_time_linux.h Related-To: NEO-5548 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
23 lines
374 B
C++
23 lines
374 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "opencl/source/sharings/va/va_device.h"
|
|
|
|
namespace NEO {
|
|
|
|
VADevice::VADevice() {
|
|
}
|
|
|
|
ClDevice *VADevice::getDeviceFromVA(Platform *pPlatform, VADisplay vaDisplay) {
|
|
return getRootDeviceFromVaDisplay(pPlatform, vaDisplay);
|
|
}
|
|
|
|
VADevice::~VADevice() {
|
|
}
|
|
|
|
} // namespace NEO
|