mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: I1685057a641d938170b8c7ec860d2f53f45b1d6d Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
25 lines
605 B
C++
25 lines
605 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
|
#include "runtime/sampler/sampler.h"
|
|
#include "runtime/sampler/sampler.inl"
|
|
|
|
namespace NEO {
|
|
|
|
using SAMPLER_STATE = typename Family::SAMPLER_STATE;
|
|
|
|
template <>
|
|
void SamplerHw<Family>::appendSamplerStateParams(SAMPLER_STATE *state) {
|
|
if (DebugManager.flags.ForceSamplerLowFilteringPrecision.get()) {
|
|
state->setLowQualityFilter(SAMPLER_STATE::LOW_QUALITY_FILTER_ENABLE);
|
|
}
|
|
}
|
|
|
|
#include "runtime/sampler/sampler_factory_init.inl"
|
|
} // namespace NEO
|