mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Related-To: NEO-5659, NEO-5654, NEO-5653 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
14 lines
325 B
C++
14 lines
325 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
template <>
|
|
void setFilterMode<Family>(typename Family::RENDER_SURFACE_STATE *surfaceState, const HardwareInfo *hwInfo){};
|
|
|
|
template <>
|
|
bool checkIfArrayNeeded<Family>(ImageType type, const HardwareInfo *hwInfo) {
|
|
return false;
|
|
}; |