2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2020-02-22 16:28:27 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void populateFactoryTable<BufferHw<Family>>() {
|
2020-05-12 19:47:44 +08:00
|
|
|
extern BufferFactoryFuncs bufferFactory[IGFX_MAX_CORE];
|
2017-12-21 07:45:38 +08:00
|
|
|
bufferFactory[gfxCore].createBufferFunction = BufferHw<Family>::create;
|
|
|
|
}
|