2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2017-2020 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
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-01-23 20:40:37 +08:00
|
|
|
template class ImageHw<Family>;
|
2017-12-21 07:45:38 +08:00
|
|
|
template <>
|
|
|
|
void populateFactoryTable<ImageHw<Family>>() {
|
|
|
|
extern ImageFuncs imageFactory[IGFX_MAX_CORE];
|
|
|
|
imageFactory[gfxCore].createImageFunction = ImageHw<Family>::create;
|
|
|
|
}
|