2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2020-02-22 09:28:27 +01:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-08 20:25:47 +00:00
|
|
|
namespace NEO {
|
|
|
|
|
|
2018-01-23 13:40:37 +01:00
|
|
|
template class ImageHw<Family>;
|
2017-12-21 00:45:38 +01:00
|
|
|
template <>
|
|
|
|
|
void populateFactoryTable<ImageHw<Family>>() {
|
2020-05-12 13:47:44 +02:00
|
|
|
extern ImageFactoryFuncs imageFactory[IGFX_MAX_CORE];
|
2017-12-21 00:45:38 +01:00
|
|
|
imageFactory[gfxCore].createImageFunction = ImageHw<Family>::create;
|
|
|
|
|
}
|
2021-12-08 20:25:47 +00:00
|
|
|
} // namespace NEO
|