14 lines
315 B
C++
14 lines
315 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
template class ImageHw<Family>;
|
|
template <>
|
|
void populateFactoryTable<ImageHw<Family>>() {
|
|
extern ImageFactoryFuncs imageFactory[IGFX_MAX_CORE];
|
|
imageFactory[gfxCore].createImageFunction = ImageHw<Family>::create;
|
|
}
|