mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Performs minor renaming (mostly capitalization) in order to align with specification. Renames L1_CACHE_POLICY to L1_CACHE_CONTROL. Related-To: NEO-13147 Signed-off-by: Vysochyn, Illia <illia.vysochyn@intel.com>
16 lines
365 B
C++
16 lines
365 B
C++
/*
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
template <>
|
|
void setMipTailStartLOD<Family>(Family::RENDER_SURFACE_STATE *surfaceState, Gmm *gmm) {
|
|
surfaceState->setMipTailStartLOD(0);
|
|
|
|
if (gmm != nullptr) {
|
|
surfaceState->setMipTailStartLOD(gmm->gmmResourceInfo->getMipTailStartLODSurfaceState());
|
|
}
|
|
}
|