mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
19 lines
546 B
C++
19 lines
546 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "sku_info/operations/windows/sku_info_receiver.h"
|
|
|
|
namespace NEO {
|
|
void SkuInfoReceiver::receiveFtrTableFromAdapterInfo(FeatureTable *ftrTable, _ADAPTER_INFO *adapterInfo) {
|
|
receiveFtrTableFromAdapterInfoBase(ftrTable, adapterInfo);
|
|
}
|
|
|
|
void SkuInfoReceiver::receiveWaTableFromAdapterInfo(WorkaroundTable *workaroundTable, _ADAPTER_INFO *adapterInfo) {
|
|
receiveWaTableFromAdapterInfoBase(workaroundTable, adapterInfo);
|
|
}
|
|
} // namespace NEO
|