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